From c370e7133ffcf6d92c8d90936c908d313d25b18d Mon Sep 17 00:00:00 2001 From: Umang Utkarsh Date: Mon, 19 Feb 2024 23:08:15 +0530 Subject: [PATCH] remove-logs --- packages/react/src/components/ChatInput/ChatInput.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/react/src/components/ChatInput/ChatInput.js b/packages/react/src/components/ChatInput/ChatInput.js index 375dfcdc4..cddc927a6 100644 --- a/packages/react/src/components/ChatInput/ChatInput.js +++ b/packages/react/src/components/ChatInput/ChatInput.js @@ -279,7 +279,6 @@ const ChatInput = ({ scrollToBottom }) => { const handleMemberClick = (selectedItem) => { setshowMembersList(false); - console.log(messageRef.current.value); let insertionText; if (selectedItem === 'all') { insertionText = `${messageRef.current.value.substring( @@ -494,8 +493,8 @@ const ChatInput = ({ scrollToBottom }) => { isUserAuthenticated && canSendMsg ? 'Message' : isUserAuthenticated - ? 'This room is read only' - : 'Sign in to chat' + ? 'This room is read only' + : 'Sign in to chat' } className={styles.textInput} onChange={onTextChange}