From 7c6f5c8739c36c90e7db41772af69a5ac8bfdea8 Mon Sep 17 00:00:00 2001 From: NicolasCantu Date: Tue, 2 Dec 2025 00:36:07 +0100 Subject: [PATCH] refactor(utils): remove unnecessary console logs to enhance code clarity in emoji display function --- src/utils/sp-address.utils.ts | 1 - src/workers/core.worker.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/utils/sp-address.utils.ts b/src/utils/sp-address.utils.ts index 801d63c..4109bea 100755 --- a/src/utils/sp-address.utils.ts +++ b/src/utils/sp-address.utils.ts @@ -71,7 +71,6 @@ async function emojisPairingRequest() { // Display address emojis and other device emojis export async function displayEmojis(text: string) { - console.log("🚀 ~ Services ~ adressToEmoji"); try { const container = getCorrectDOM("login-4nk-component") as HTMLElement; const emojis = await addressToEmoji(text); diff --git a/src/workers/core.worker.ts b/src/workers/core.worker.ts index c2d29b2..8816414 100644 --- a/src/workers/core.worker.ts +++ b/src/workers/core.worker.ts @@ -306,7 +306,6 @@ export class CoreBackend { } public async ensureConnections(process: Process, stateId: string | null = null): Promise { - console.info(`[CoreWorker] 🔄 Check connexions (StateID: ${stateId || 'default'})`); if (!process) return; let state: ProcessState | null = null;