fix(tui): fix broken /mcp toggling (#16431)

Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com>
pull/16565/head^2
Nate Williams 2026-03-08 04:01:09 -04:00 committed by GitHub
parent a2ce4eb650
commit fdad35aaa7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export namespace Keybind {
*/
export function fromParsedKey(key: ParsedKey, leader = false): Info {
return {
name: key.name,
name: key.name === " " ? "space" : key.name,
ctrl: key.ctrl,
meta: key.meta,
shift: key.shift,