From 0a3b36f9aa7385b3bf5763e767ff10b0e90fc80c Mon Sep 17 00:00:00 2001 From: PhilReact Date: Sat, 23 Nov 2024 10:56:47 +0200 Subject: [PATCH] remove log --- src/background.ts | 1 - src/components/Group/ManageMembers.tsx | 1 - src/utils/decryptWallet.ts | 1 - 3 files changed, 3 deletions(-) diff --git a/src/background.ts b/src/background.ts index fde675d..bbc81f5 100644 --- a/src/background.ts +++ b/src/background.ts @@ -100,7 +100,6 @@ import { import { getData, removeKeysAndLogout, storeData } from "./utils/chromeStorage"; import {BackgroundFetch} from '@transistorsoft/capacitor-background-fetch'; import { LocalNotifications } from '@capacitor/local-notifications'; -// import ChatComputePowWorker from './chatComputePow.worker.js?worker'; const uid = new ShortUniqueId({ length: 9, dictionary: 'number' }); diff --git a/src/components/Group/ManageMembers.tsx b/src/components/Group/ManageMembers.tsx index d01e3a1..2bf00fe 100644 --- a/src/components/Group/ManageMembers.tsx +++ b/src/components/Group/ManageMembers.tsx @@ -127,7 +127,6 @@ export const ManageMembers = ({ const getMembers = async (groupId) => { try { const res = await getGroupMembers(groupId); - console.log('res', res) setMembersWithNames(res?.members || []); } catch (error) {} }; diff --git a/src/utils/decryptWallet.ts b/src/utils/decryptWallet.ts index 031e5a5..b091639 100644 --- a/src/utils/decryptWallet.ts +++ b/src/utils/decryptWallet.ts @@ -24,7 +24,6 @@ export const decryptStoredWallet = async (password, wallet) => { } export const decryptStoredWalletFromSeedPhrase = async (password) => { - console.log('p') const threads = doInitWorkers(crypto.kdfThreads) const salt = new Uint8Array(void 0)