Skip to content

Commit

Permalink
remove-logs
Browse files Browse the repository at this point in the history
  • Loading branch information
umangutkarsh committed Feb 19, 2024
1 parent 0ce12ad commit c370e71
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/react/src/components/ChatInput/ChatInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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}
Expand Down

0 comments on commit c370e71

Please sign in to comment.