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

Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com>
This commit is contained in:
Nate Williams
2026-03-08 04:01:09 -04:00
committed by GitHub
parent a2ce4eb650
commit fdad35aaa7

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,