Skip to content

Commit ee6b630

Browse files
fix: unhide import command from TUI main menu (#834)
The import command should be visible in the TUI command list so users can discover and use it interactively.
1 parent 3b60dbe commit ee6b630

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/tui/utils/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export interface CommandMeta {
1212
/**
1313
* Commands hidden from TUI entirely (meta commands).
1414
*/
15-
const HIDDEN_FROM_TUI = ['help', 'import', 'telemetry'] as const;
15+
const HIDDEN_FROM_TUI = ['help', 'telemetry'] as const;
1616

1717
/**
1818
* Commands that are CLI-only (shown but marked as requiring CLI invocation).

0 commit comments

Comments
 (0)