From c1cfb74fa7ed7e4b488bb0e502cf6a5f8804cd6d Mon Sep 17 00:00:00 2001 From: AlecM33 Date: Tue, 1 Mar 2022 21:13:08 -0500 Subject: [PATCH] remove unnecessary log --- client/src/scripts/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/scripts/game.js b/client/src/scripts/game.js index c8efdcf..b3123a7 100644 --- a/client/src/scripts/game.js +++ b/client/src/scripts/game.js @@ -35,7 +35,7 @@ const game = () => { ); }); socket.on("connect_error", (err) => { - toast('Connection error: ' + err, 'error', true, false); + toast(err, 'error', true, false); }); socket.on('disconnect', () => { toast('Disconnected. Attempting reconnect...', 'error', true, false);