From 3a5d7607e36e06f5fb14af93cd7260f0943f1bf0 Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Sat, 11 Oct 2025 22:17:26 +0200 Subject: [PATCH] debouncing delay --- frontend/src/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/index.jsx b/frontend/src/index.jsx index f00dc31..27368f6 100644 --- a/frontend/src/index.jsx +++ b/frontend/src/index.jsx @@ -2846,7 +2846,7 @@ const handleDownload = useCallback( setLoading(false); } } - }, 150); + }, 300); return () => { cancelled = true;