diff --git a/apps/x/apps/renderer/src/components/graph-view.tsx b/apps/x/apps/renderer/src/components/graph-view.tsx index 0a847f54..b0b57594 100644 --- a/apps/x/apps/renderer/src/components/graph-view.tsx +++ b/apps/x/apps/renderer/src/components/graph-view.tsx @@ -48,7 +48,7 @@ const FLOAT_VARIANCE = 2 const FLOAT_SPEED_BASE = 0.0006 const FLOAT_SPEED_VARIANCE = 0.00025 -export function GraphView({ nodes, edges, isLoading, error, onSelectNode }: GraphViewProps) { +export function GraphView({ nodes, edges, error, onSelectNode }: GraphViewProps) { const containerRef = useRef(null) const positionsRef = useRef>(new Map()) const motionSeedsRef = useRef>(new Map()) diff --git a/apps/x/apps/renderer/src/components/tab-bar.tsx b/apps/x/apps/renderer/src/components/tab-bar.tsx index b4374ffb..a81c4ece 100644 --- a/apps/x/apps/renderer/src/components/tab-bar.tsx +++ b/apps/x/apps/renderer/src/components/tab-bar.tsx @@ -29,7 +29,6 @@ export function TabBar({ activeTabId, getTabTitle, getTabId, - isProcessing, onSwitchTab, onCloseTab, layout = 'fill', @@ -47,7 +46,6 @@ export function TabBar({ {tabs.map((tab, index) => { const tabId = getTabId(tab) const isActive = tabId === activeTabId - const processing = isProcessing?.(tab) ?? false const title = getTabTitle(tab) return (