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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user