fix build issue

This commit is contained in:
Arjun 2026-04-07 11:58:17 +05:30
parent 470947a59d
commit ce4e8f620a
2 changed files with 1 additions and 3 deletions

View file

@ -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<HTMLDivElement>(null)
const positionsRef = useRef<Map<string, NodePosition>>(new Map())
const motionSeedsRef = useRef<Map<string, { phase: number; amplitude: number; speed: number }>>(new Map())

View file

@ -29,7 +29,6 @@ export function TabBar<T>({
activeTabId,
getTabTitle,
getTabId,
isProcessing,
onSwitchTab,
onCloseTab,
layout = 'fill',
@ -47,7 +46,6 @@ export function TabBar<T>({
{tabs.map((tab, index) => {
const tabId = getTabId(tab)
const isActive = tabId === activeTabId
const processing = isProcessing?.(tab) ?? false
const title = getTabTitle(tab)
return (