refactor(tui): remove hidden command metadata

This commit is contained in:
Dax Raad 2026-07-14 23:40:40 -04:00
commit e8964ce672
3 changed files with 1 additions and 4 deletions

View file

@ -16,7 +16,7 @@ export function CommandPaletteDialog() {
const shortcuts = Keymap.useShortcuts()
const options = createMemo(() =>
commands().flatMap((command) => {
if (!command.id || !command.palette || command.hidden || command.id === COMMAND_PALETTE_COMMAND) return []
if (!command.id || !command.palette || command.id === COMMAND_PALETTE_COMMAND) return []
return {
title: command.title ?? command.id,
description: command.description,