Bump auto scroll threshold (#5738)

This commit is contained in:
Zane
2025-11-17 13:14:46 -08:00
committed by GitHub
parent 169135948b
commit 4494ba773f
+1 -1
View File
@@ -46,7 +46,7 @@ const ScrollArea = React.forwardRef<ScrollAreaHandle, ScrollAreaProps>(
const isActivelyScrollingRef = React.useRef(false);
const scrollTimeoutRef = React.useRef<number | null>(null);
const BOTTOM_SCROLL_THRESHOLD = 100;
const BOTTOM_SCROLL_THRESHOLD = 200;
const isAtBottom = React.useCallback(() => {
if (!viewportRef.current) return false;