remove log

This commit is contained in:
PhilReact 2024-11-23 10:56:47 +02:00
parent 48bae8bf63
commit 0a3b36f9aa
3 changed files with 0 additions and 3 deletions

View File

@ -100,7 +100,6 @@ import {
import { getData, removeKeysAndLogout, storeData } from "./utils/chromeStorage"; import { getData, removeKeysAndLogout, storeData } from "./utils/chromeStorage";
import {BackgroundFetch} from '@transistorsoft/capacitor-background-fetch'; import {BackgroundFetch} from '@transistorsoft/capacitor-background-fetch';
import { LocalNotifications } from '@capacitor/local-notifications'; import { LocalNotifications } from '@capacitor/local-notifications';
// import ChatComputePowWorker from './chatComputePow.worker.js?worker';
const uid = new ShortUniqueId({ length: 9, dictionary: 'number' }); const uid = new ShortUniqueId({ length: 9, dictionary: 'number' });

View File

@ -127,7 +127,6 @@ export const ManageMembers = ({
const getMembers = async (groupId) => { const getMembers = async (groupId) => {
try { try {
const res = await getGroupMembers(groupId); const res = await getGroupMembers(groupId);
console.log('res', res)
setMembersWithNames(res?.members || []); setMembersWithNames(res?.members || []);
} catch (error) {} } catch (error) {}
}; };

View File

@ -24,7 +24,6 @@ export const decryptStoredWallet = async (password, wallet) => {
} }
export const decryptStoredWalletFromSeedPhrase = async (password) => { export const decryptStoredWalletFromSeedPhrase = async (password) => {
console.log('p')
const threads = doInitWorkers(crypto.kdfThreads) const threads = doInitWorkers(crypto.kdfThreads)
const salt = new Uint8Array(void 0) const salt = new Uint8Array(void 0)