1
0

Removed SUBMISSION_READY from the Game.jsx page

This commit is contained in:
Mathias Wagner 2023-11-19 00:20:19 +01:00
parent c39f5a6022
commit 43e91620f7
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -14,7 +14,6 @@ export const Game = () => {
useEffect(() => {
const timeout = setTimeout(() => {
setCurrentState("waiting");
socket.emit("SUBMISSION_READY");
}, 5000);
return () => clearTimeout(timeout);