diff --git a/src/backgroundFunctions/encryption.ts b/src/backgroundFunctions/encryption.ts index 6af27c4..c30caac 100644 --- a/src/backgroundFunctions/encryption.ts +++ b/src/backgroundFunctions/encryption.ts @@ -106,7 +106,6 @@ export const encryptAndPublishSymmetricKeyGroupChatForAdmins = async ({groupId, previousData: Object, }) => { try { - console.log({groupId, previousData, admins}) let highestKey = 0 if(previousData){ highestKey = Math.max(...Object.keys((previousData || {})).filter(item=> !isNaN(+item)).map(Number)); @@ -129,10 +128,7 @@ export const encryptAndPublishSymmetricKeyGroupChatForAdmins = async ({groupId, } const symmetricKeyAndNonceBase64 = await objectToBase64(objectToSave) - console.log({ data64: symmetricKeyAndNonceBase64, - publicKeys: groupmemberPublicKeys, - privateKey, - userPublicKey}) + const encryptedData = encryptDataGroup({ data64: symmetricKeyAndNonceBase64, publicKeys: groupmemberPublicKeys, diff --git a/src/components/Apps/AppsHomeDesktop.tsx b/src/components/Apps/AppsHomeDesktop.tsx index d3fc20d..3edbbb4 100644 --- a/src/components/Apps/AppsHomeDesktop.tsx +++ b/src/components/Apps/AppsHomeDesktop.tsx @@ -102,7 +102,6 @@ export const AppsHomeDesktop = ({ }} onKeyDown={(e) => { if (e.key === 'Enter' && qortalUrl) { - console.log('hello') openQortalUrl(); } }} diff --git a/src/components/Chat/AdminSpaceInner.tsx b/src/components/Chat/AdminSpaceInner.tsx index 1dda46b..15e2459 100644 --- a/src/components/Chat/AdminSpaceInner.tsx +++ b/src/components/Chat/AdminSpaceInner.tsx @@ -127,7 +127,6 @@ export const AdminSpaceInner = ({ previousData: adminGroupSecretKey, admins: adminsWithNames, } }, (response) => { - console.log('response', response) if (!response?.error) { setInfoSnackCustom({ type: "success", diff --git a/src/components/Chat/ChatGroup.tsx b/src/components/Chat/ChatGroup.tsx index a0ccd72..7f55e3e 100644 --- a/src/components/Chat/ChatGroup.tsx +++ b/src/components/Chat/ChatGroup.tsx @@ -758,7 +758,6 @@ useEffect(() => { } }, [isPrivate]) - console.log('isPrivate', isPrivate) return (