diff --git a/src/components/Chat/ChatDirect.tsx b/src/components/Chat/ChatDirect.tsx index 1197770..280a42d 100644 --- a/src/components/Chat/ChatDirect.tsx +++ b/src/components/Chat/ChatDirect.tsx @@ -52,7 +52,6 @@ export const ChatDirect = ({ myAddress, isNewChat, selectedDirect, setSelectedDi forceUpdate(); // Trigger re-render by updating the state }; const publicKeyOfRecipientRef = useRef(null) - console.log({messages}) const getPublicKeyFunc = async (address)=> { try { const publicKey = await getPublicKey(address) @@ -225,7 +224,6 @@ export const ChatDirect = ({ myAddress, isNewChat, selectedDirect, setSelectedDi const sendChatDirect = async ({ chatReference = undefined, messageText, otherData}: any, address, publicKeyOfRecipient, isNewChatVar)=> { try { - console.log('chatReferencedirect', chatReference) const directTo = isNewChatVar ? directToValue : address if(!directTo) return diff --git a/src/components/Chat/ChatList.tsx b/src/components/Chat/ChatList.tsx index 4a4e4f4..3ebb362 100644 --- a/src/components/Chat/ChatList.tsx +++ b/src/components/Chat/ChatList.tsx @@ -18,7 +18,6 @@ export const ChatList = ({ initialMessages, myAddress, tempMessages, chatId, onR fixedWidth: true, defaultHeight: 50, }), [chatId]); // Recreate cache when chatId changes - console.log('messages2', messages) useEffect(() => { cache.clearAll(); }, []); diff --git a/src/components/Group/Group.tsx b/src/components/Group/Group.tsx index e407acc..f07515c 100644 --- a/src/components/Group/Group.tsx +++ b/src/components/Group/Group.tsx @@ -813,7 +813,6 @@ export const Group = ({ getGroupOwner(selectedGroup?.groupId); }, [selectedGroup]) - console.log('groupOwner', groupOwner) useEffect(() => { if (selectedGroup && groupOwner && groupOwner?.isOpen === false) { diff --git a/src/components/Group/GroupJoinRequests.tsx b/src/components/Group/GroupJoinRequests.tsx index ae6ced1..1f9d2ca 100644 --- a/src/components/Group/GroupJoinRequests.tsx +++ b/src/components/Group/GroupJoinRequests.tsx @@ -92,7 +92,6 @@ export const GroupJoinRequests = ({ myAddress, groups, setOpenManageMembers, get } }, [myAddress, groups]); - console.log('groupsWithJoinRequests', groupsWithJoinRequests) return (