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 (
{ }, }, (response) => { - console.log('response', response) if (response.error) { rej(response?.message); return; @@ -536,7 +535,6 @@ export const Save = ({ isDesktop, disableWidth, myName }) => { const responseData = uint8ArrayToObject( decryptToUnit8ArraySubject ); - console.log('responseData', responseData) if(Array.isArray(responseData)){ saveToLocalStorage("ext_saved_settings_import_export", "sortablePinnedApps", responseData, { isUsingImportExport: true @@ -555,7 +553,6 @@ export const Save = ({ isDesktop, disableWidth, myName }) => { { try { - console.log('pinnedApps', pinnedApps) const data64 = await objectToBase64(pinnedApps); const encryptedData = await new Promise((res, rej) => { diff --git a/src/components/Tutorials/useHandleTutorials.tsx b/src/components/Tutorials/useHandleTutorials.tsx index 8f44f6b..468dc4c 100644 --- a/src/components/Tutorials/useHandleTutorials.tsx +++ b/src/components/Tutorials/useHandleTutorials.tsx @@ -57,7 +57,6 @@ useEffect(()=> { }, []) const showTutorial = useCallback(async (type, isForce) => { try { - console.log('type, isForce', type, isForce) const isOnline = await checkIfGatewayIsOnline() if(!isOnline) return