refactor(utils): remove unnecessary console logs to enhance code clarity in emoji display function

This commit is contained in:
NicolasCantu 2025-12-02 00:36:07 +01:00
parent 50903c7e39
commit 7c6f5c8739
2 changed files with 0 additions and 2 deletions

View File

@ -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);

View File

@ -306,7 +306,6 @@ export class CoreBackend {
}
public async ensureConnections(process: Process, stateId: string | null = null): Promise<void> {
console.info(`[CoreWorker] 🔄 Check connexions (StateID: ${stateId || 'default'})`);
if (!process) return;
let state: ProcessState | null = null;