From c6565612988501673cd73a9226856e33b4395c35 Mon Sep 17 00:00:00 2001 From: Adam French Date: Fri, 6 Feb 2026 15:27:55 +0000 Subject: [PATCH] fixed dogshit scroll --- nginx/vue/src/components/util/AutoScroll.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/vue/src/components/util/AutoScroll.vue b/nginx/vue/src/components/util/AutoScroll.vue index f9f9f78..2f929e7 100644 --- a/nginx/vue/src/components/util/AutoScroll.vue +++ b/nginx/vue/src/components/util/AutoScroll.vue @@ -18,7 +18,7 @@ let timeoutId; function handleHover() { cancelAnimationFrame(timeoutId); - setTimeout(() => requestAnimationFrame(tick), PAUSE); + setTimeout(() => (timeoutId = requestAnimationFrame(tick)), PAUSE); } function tick() {