From 963470ea7104c18ffaba414f4320fa2dc9f75c4f Mon Sep 17 00:00:00 2001 From: Mehdi Osman Date: Sun, 5 Dec 2021 20:34:34 +0100 Subject: [PATCH] Removed log --- frontend/app/components/Assist/ChatWindow/ChatWindow.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/app/components/Assist/ChatWindow/ChatWindow.tsx b/frontend/app/components/Assist/ChatWindow/ChatWindow.tsx index 0327b8254..6da23c7e8 100644 --- a/frontend/app/components/Assist/ChatWindow/ChatWindow.tsx +++ b/frontend/app/components/Assist/ChatWindow/ChatWindow.tsx @@ -26,7 +26,6 @@ const ChatWindow: FC = function ChatWindow({ userId, incomeStream, localS const iid = setInterval(() => { const settings = incomeStream.getVideoTracks()[0]?.getSettings() const isDummyVideoTrack = !!settings ? (settings.width === 2 || settings.frameRate === 0) : true - console.log(isDummyVideoTrack, settings) const shouldBeEnabled = !isDummyVideoTrack if (shouldBeEnabled !== localVideoEnabled) { setRemoteVideoEnabled(shouldBeEnabled)