From aad87da4a59ff76dcc9fe9adc07ad740835ef792 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Sun, 21 Dec 2025 23:55:22 -0500 Subject: [PATCH] slightly reduce threshold --- src/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.tsx b/src/app.tsx index fbcfcbf..7b9ecb5 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -31,7 +31,7 @@ function AppLayout(props: { children: any }) { } = useBars(); let lastScrollY = 0; - const SCROLL_THRESHOLD = 100; + const SCROLL_THRESHOLD = 75; // Use onMount to avoid hydration issues - window operations are client-only onMount(() => {