From 43e91620f7a0811a16426329d92a41132b2d1916 Mon Sep 17 00:00:00 2001 From: Mathias Wagner <germannewsmaker@gmail.com> Date: Sun, 19 Nov 2023 00:20:19 +0100 Subject: [PATCH] Removed SUBMISSION_READY from the Game.jsx page --- client/src/pages/Game/Game.jsx | 1 - 1 file changed, 1 deletion(-) 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);