From b44830b0f54fea253da0e7663d40a8d3fda9a94c Mon Sep 17 00:00:00 2001 From: Rainnny7 Date: Mon, 9 Sep 2024 21:28:30 -0400 Subject: [PATCH] remove debug --- JS-SDK/src/hook/websocket.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/JS-SDK/src/hook/websocket.ts b/JS-SDK/src/hook/websocket.ts index aeabbda..8c52220 100644 --- a/JS-SDK/src/hook/websocket.ts +++ b/JS-SDK/src/hook/websocket.ts @@ -40,10 +40,7 @@ export const useTetherWS = ( // Track the user when the WS connects socket.addEventListener("open", () => { socket.send(JSON.stringify({ op: 0, snowflake: snowflake })); - console.log( - "[Tether] WebSocket connection established!", - snowflake - ); + console.log("[Tether] WebSocket connection established!"); }); socket.addEventListener("close", connect); // Reconnect on close