diff --git a/components/ui/CommandPalette.tsx b/components/ui/CommandPalette.tsx index 6d10c09..603f214 100644 --- a/components/ui/CommandPalette.tsx +++ b/components/ui/CommandPalette.tsx @@ -9,7 +9,7 @@ export interface CommandAction { label: string; description?: string; shortcut?: string; - category: 'edit' | 'playback' | 'file' | 'view' | 'effects'; + category: 'edit' | 'playback' | 'file' | 'view' | 'effects' | 'tracks'; action: () => void; }