From b95adf2ed679d2086ef501a637968eb9a4f5b24d Mon Sep 17 00:00:00 2001 From: liamcottle Date: Fri, 16 Aug 2024 21:33:58 +1200 Subject: [PATCH] fix quit --- electron/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron/main.js b/electron/main.js index 79d62f1..3b2d152 100644 --- a/electron/main.js +++ b/electron/main.js @@ -200,7 +200,7 @@ app.whenReady().then(async () => { }); // quit after dismissing error dialog - quit(); + app.quit(); });