diff --git a/client/src/components/game/handlers.ts b/client/src/components/game/handlers.ts index c6ff782..57280a4 100644 --- a/client/src/components/game/handlers.ts +++ b/client/src/components/game/handlers.ts @@ -99,7 +99,6 @@ export function initSocket( socket.on("receivedMove", (m: { from: string; to: string; promotion?: string }) => { const success = actions.makeMove(m); - console.log(success); if (!success) { socket.emit("getLatestGame"); }