aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/app/js/toasts.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/js/toasts.js b/src/app/js/toasts.js
index 83ddf6a..bd9d03a 100644
--- a/src/app/js/toasts.js
+++ b/src/app/js/toasts.js
@@ -75,7 +75,7 @@ toasts.dismiss = (id) => {
}
ipcRenderer.on("toast", (_, properties) => {
- Toast(properties);
+ toasts.show(properties);
})
module.exports = toasts;