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); }, []);