Compare commits

...

1 Commits

Author SHA1 Message Date
Kit Langton 6f0a898fe3 fix(tui): hide internal commands from palette 2026-07-16 02:29:25 +00:00
+1 -1
View File
@@ -962,7 +962,7 @@ function App(props: { pair?: DialogPairCredentials }) {
},
},
].map((command) => ({
namespace: "palette",
namespace: command.hidden ? undefined : "palette",
...command,
})),
)