Skip to content

Commit f12fb9a

Browse files
committed
fix: remove update and package from HIDDEN_FROM_TUI
These commands have TUI screens and should be visible. The test expected them to be present but the implementation still filtered them out, causing CI failure.
1 parent a1874d0 commit f12fb9a

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', 'update', 'package', 'import'] as const;
15+
const HIDDEN_FROM_TUI = ['help', 'import'] as const;
1616

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

0 commit comments

Comments
 (0)