diff --git a/client/src/pages/Game/Game.jsx b/client/src/pages/Game/Game.jsx index 33cc5fa..1c94205 100644 --- a/client/src/pages/Game/Game.jsx +++ b/client/src/pages/Game/Game.jsx @@ -14,7 +14,6 @@ export const Game = () => { useEffect(() => { const timeout = setTimeout(() => { setCurrentState("waiting"); - socket.emit("SUBMISSION_READY"); }, 5000); return () => clearTimeout(timeout);