tui: improve keyboard navigation and MCP server status display

This commit is contained in:
Dax Raad
2025-10-31 19:47:08 -04:00
parent d4cb47eadc
commit 9beb0f8512
3 changed files with 4 additions and 4 deletions
@@ -78,7 +78,7 @@ export function CommandProvider(props: ParentProps) {
const keybind = useKeybind()
useKeyboard((evt) => {
if (keybind.match("command_list", evt)) {
if (keybind.match("command_list", evt) && dialog.stack.length === 0) {
evt.preventDefault()
dialog.replace(() => <DialogCommand options={value.options} />)
return