From 60716861ac983fa27cc16a7c19cb92ab757183ad Mon Sep 17 00:00:00 2001 From: Nathaniel Tampus Date: Mon, 6 Mar 2023 15:12:56 +0800 Subject: [PATCH] remove extra comment --- client/src/components/game/handlers.ts | 1 - 1 file changed, 1 deletion(-) 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"); }