fix: add 'tracks' category to CommandAction type

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 <noreply@anthropic.com>
This commit is contained in:
2025-11-17 22:20:19 +01:00
parent de8a3ff187
commit 55e67bc187

View File

@@ -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;
}