From d8e22ef4af1791e168c53a0b5d5dc18ab296b270 Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Wed, 18 Mar 2026 17:53:42 -0700 Subject: [PATCH] Stop autofocus stealing of the cracker panel. Closes #80. --- frontend/src/components/AppShell.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/frontend/src/components/AppShell.tsx b/frontend/src/components/AppShell.tsx index b141b97..1da675c 100644 --- a/frontend/src/components/AppShell.tsx +++ b/frontend/src/components/AppShell.tsx @@ -257,14 +257,6 @@ export function AppShell({
{ - if (showCracker && el) { - const focusable = el.querySelector('input, button:not([disabled])'); - if (focusable) { - setTimeout(() => focusable.focus(), 210); - } - } - }} className={cn( 'border-t border-border bg-background transition-all duration-200 overflow-hidden', showCracker ? 'h-[275px]' : 'h-0'