From 4494ba773f46951468c7530f080d8e6e7ae7051e Mon Sep 17 00:00:00 2001 From: Zane <75694352+zanesq@users.noreply.github.com> Date: Mon, 17 Nov 2025 13:14:46 -0800 Subject: [PATCH] Bump auto scroll threshold (#5738) --- ui/desktop/src/components/ui/scroll-area.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/desktop/src/components/ui/scroll-area.tsx b/ui/desktop/src/components/ui/scroll-area.tsx index 43ce2773..5fd46161 100644 --- a/ui/desktop/src/components/ui/scroll-area.tsx +++ b/ui/desktop/src/components/ui/scroll-area.tsx @@ -46,7 +46,7 @@ const ScrollArea = React.forwardRef( const isActivelyScrollingRef = React.useRef(false); const scrollTimeoutRef = React.useRef(null); - const BOTTOM_SCROLL_THRESHOLD = 100; + const BOTTOM_SCROLL_THRESHOLD = 200; const isAtBottom = React.useCallback(() => { if (!viewportRef.current) return false;