From 0cbe70c13042b29690fa6195d430b0120150f6ef Mon Sep 17 00:00:00 2001 From: Ujjwal-Agarwal Date: Sat, 14 Feb 2026 18:27:48 +0530 Subject: [PATCH] Removed console.log Signed-off-by: Ujjwal-Agarwal --- src/native/tray.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/native/tray.ts b/src/native/tray.ts index 5fa52ff..3f35bb2 100644 --- a/src/native/tray.ts +++ b/src/native/tray.ts @@ -11,8 +11,6 @@ let tray: Tray = null; // Create and resize tray icon for macOS function createTrayIcon() { const image = nativeImage.createFromDataURL(trayIconAsset); - console.log("Tray icon asset type:", typeof trayIconAsset); - console.log("Tray icon asset preview:", String(trayIconAsset).slice(0, 50)); const resized = image.resize({ width: 20, height: 20 }); // Mark as template image so it adapts to dark/light mode