From 72cb7ccc00438625e58900efa780a004eda5a826 Mon Sep 17 00:00:00 2001 From: Joseph Campuzano Date: Mon, 19 Jan 2026 10:43:27 -0600 Subject: [PATCH] fix(app): list component jumping when mouse happens to be under the list and keyboard navigating. (#9435) --- packages/ui/src/components/list.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/ui/src/components/list.tsx b/packages/ui/src/components/list.tsx index 631b3e33a..bfe3440ea 100644 --- a/packages/ui/src/components/list.tsx +++ b/packages/ui/src/components/list.tsx @@ -206,6 +206,7 @@ export function List(props: ListProps & { ref?: (ref: ListRef) => void }) setActive(props.key(item)) }} onMouseLeave={() => { + if (!store.mouseActive) return; setActive(null) }} >