From 773e8b471cb115978f51b54e68cdf2b110a5cc5e Mon Sep 17 00:00:00 2001 From: MikeHughes-BIN Date: Sun, 18 Jan 2026 17:37:47 +0100 Subject: [PATCH] Remove notification for successful file download in ipcMain handler --- main.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/main.js b/main.js index 2512f8c..43bcd44 100644 --- a/main.js +++ b/main.js @@ -252,11 +252,6 @@ electron.ipcMain.on("file_download", async (event) => { format }); - new Notification({ - title: "Erfolgreich gespeichert", - body: `Dokument gespeichert als .${format}` - }).show(); - } catch (err) { console.error("file_download failed:", err);