Remove notification for successful file download in ipcMain handler

This commit is contained in:
MikeHughes-BIN
2026-01-18 17:37:47 +01:00
parent 013c9b5f2c
commit 773e8b471c
-5
View File
@@ -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);