fix(challenge/preact): wait a little longer to be extra safe

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso
2025-09-07 15:47:04 +00:00
parent 069803ec47
commit 19b819809e
+1 -1
View File
@@ -32,7 +32,7 @@ const App = () => {
useEffect(() => { useEffect(() => {
const timer = setTimeout(() => { const timer = setTimeout(() => {
setPassed(true); setPassed(true);
}, state.difficulty * 100); }, state.difficulty * 125);
return () => clearTimeout(timer); return () => clearTimeout(timer);
}, [challenge]); }, [challenge]);