From 919274b60ef0652039e04a80c561a90c62d3ff28 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Sat, 25 Apr 2026 14:26:35 -0500 Subject: [PATCH] fix(tui): align overlay q shortcut casing Keep shared overlay close behavior consistent with pager and agents overlays by binding lowercase q only. --- ui-tui/src/components/overlayControls.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-tui/src/components/overlayControls.tsx b/ui-tui/src/components/overlayControls.tsx index d6f885fdcd..3087d4aecd 100644 --- a/ui-tui/src/components/overlayControls.tsx +++ b/ui-tui/src/components/overlayControls.tsx @@ -8,7 +8,7 @@ export function useOverlayKeys({ disabled = false, onBack, onClose }: OverlayKey return } - if (ch.toLowerCase() === 'q') { + if (ch === 'q') { return onClose() }