From 23df227fd9c85b7761cd663b50c40d9de3228895 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 19 Nov 2023 16:44:56 +0100 Subject: [PATCH] Updated the waiting time in the Game.jsx --- client/src/pages/Game/Game.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/Game/Game.jsx b/client/src/pages/Game/Game.jsx index 5617361..7066c87 100644 --- a/client/src/pages/Game/Game.jsx +++ b/client/src/pages/Game/Game.jsx @@ -15,7 +15,7 @@ export const Game = () => { useEffect(() => { const timeout = setTimeout(() => { setCurrentState("waiting"); - }, 5000); + }, 6000); return () => clearTimeout(timeout); }, []);