From 19b819809e7767eaaf62cd1e24dd193049267ea0 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Sun, 7 Sep 2025 15:47:04 +0000 Subject: [PATCH] fix(challenge/preact): wait a little longer to be extra safe Signed-off-by: Xe Iaso --- lib/challenge/preact/js/app.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/challenge/preact/js/app.jsx b/lib/challenge/preact/js/app.jsx index f1321b86..4aafae99 100644 --- a/lib/challenge/preact/js/app.jsx +++ b/lib/challenge/preact/js/app.jsx @@ -32,7 +32,7 @@ const App = () => { useEffect(() => { const timer = setTimeout(() => { setPassed(true); - }, state.difficulty * 100); + }, state.difficulty * 125); return () => clearTimeout(timer); }, [challenge]);