diff --git a/components/tracks/TrackList.tsx b/components/tracks/TrackList.tsx index e2f68bb..4034fa9 100644 --- a/components/tracks/TrackList.tsx +++ b/components/tracks/TrackList.tsx @@ -15,6 +15,7 @@ import { AutomationHeader } from '@/components/automation/AutomationHeader'; import type { AutomationPoint as AutomationPointType } from '@/types/automation'; import { createAutomationPoint } from '@/lib/audio/automation/utils'; import { EffectDevice } from '@/components/effects/EffectDevice'; +import { EffectBrowser } from '@/components/effects/EffectBrowser'; export interface TrackListProps { tracks: TrackType[]; @@ -58,6 +59,7 @@ export function TrackList({ isPlaying = false, }: TrackListProps) { const [importDialogOpen, setImportDialogOpen] = React.useState(false); + const [effectBrowserTrackId, setEffectBrowserTrackId] = React.useState(null); const waveformScrollRef = React.useRef(null); const controlsScrollRef = React.useRef(null); @@ -662,15 +664,8 @@ export function TrackList({