diff --git a/packages/ui/src/features/command-center/components/CommandCenterGrid.tsx b/packages/ui/src/features/command-center/components/CommandCenterGrid.tsx index 6870f522c..5ab75a974 100644 --- a/packages/ui/src/features/command-center/components/CommandCenterGrid.tsx +++ b/packages/ui/src/features/command-center/components/CommandCenterGrid.tsx @@ -80,7 +80,9 @@ function GridCell({ } const selection = window.getSelection(); if (selection && !selection.isCollapsed) return; - cellRef.current?.querySelector("[tabindex='0']")?.focus(); + cellRef.current + ?.querySelector("[tabindex='0']") + ?.focus({ preventScroll: true }); }, [markActive], );