From 55e67bc1877e6186b216fdc9821ffce2a406c23e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 17 Nov 2025 22:20:19 +0100 Subject: [PATCH] fix: add 'tracks' category to CommandAction type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added 'tracks' to the allowed command palette categories to fix TypeScript compilation error. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- components/ui/CommandPalette.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }