From 89217d26339a8c6f5a40414174bb0c313f49fdc7 Mon Sep 17 00:00:00 2001 From: Valtteri Karesto Date: Tue, 28 Jun 2022 11:03:56 +0300 Subject: [PATCH] Remove console.log --- components/DebugStream.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/components/DebugStream.tsx b/components/DebugStream.tsx index af8ef8a..db75b03 100644 --- a/components/DebugStream.tsx +++ b/components/DebugStream.tsx @@ -87,7 +87,6 @@ const addListeners = (account: ISelect | null) => { if (streamState.socket) { interval = setInterval(() => { streamState.socket?.send(""); - console.log("ping"); }, 10000); }