From 65ba9558a6d45e64b2716464f23cf0222d824abe Mon Sep 17 00:00:00 2001 From: "Ronald A. Richardson" Date: Wed, 15 May 2024 13:03:36 +0800 Subject: [PATCH] removed console.log --- addon/components/chat-window.js | 1 - 1 file changed, 1 deletion(-) diff --git a/addon/components/chat-window.js b/addon/components/chat-window.js index f0cce28..cf49c31 100644 --- a/addon/components/chat-window.js +++ b/addon/components/chat-window.js @@ -73,7 +73,6 @@ export default class ChatWindowComponent extends Component { async listenChatChannel(chatChannelRecord) { this.socket.listen(`chat.${chatChannelRecord.public_id}`, (socketEvent) => { const { event, data } = socketEvent; - console.log(event); switch (event) { case 'chat.added_participant': case 'chat.removed_participant':