diff --git a/app/soapbox/components/dropdown-menu/dropdown-menu-item.tsx b/app/soapbox/components/dropdown-menu/dropdown-menu-item.tsx index 08339fe17..3de906dc8 100644 --- a/app/soapbox/components/dropdown-menu/dropdown-menu-item.tsx +++ b/app/soapbox/components/dropdown-menu/dropdown-menu-item.tsx @@ -64,7 +64,7 @@ const DropdownMenuItem = ({ index, item, onClick }: IDropdownMenuItem) => { const firstItem = index === 0; if (itemRef.current && firstItem) { - itemRef.current.focus(); + itemRef.current.focus({ preventScroll: true }); } }, [itemRef.current, index]);