From 82db10a10db97a58b997a611eb87a20247696b94 Mon Sep 17 00:00:00 2001 From: Hermes Date: Sat, 1 Aug 2026 13:07:45 +0000 Subject: [PATCH] fix: add tabIndex=-1 to search input to prevent auto-focus stealing from title input --- apps/web/src/routes/_app/notes.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/routes/_app/notes.tsx b/apps/web/src/routes/_app/notes.tsx index 00b4efa..ac5ea1f 100644 --- a/apps/web/src/routes/_app/notes.tsx +++ b/apps/web/src/routes/_app/notes.tsx @@ -136,7 +136,7 @@ function NotesPage() {
- setSearch(e.target.value)} className="pl-8" /> + setSearch(e.target.value)} className="pl-8" tabIndex={-1} />