From 8ad109dc03be1e6c0ab259ef65d9da75a7a92231 Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Thu, 13 Jun 2024 16:53:52 -0700 Subject: [PATCH] Remove unnecessary await in emain (#47) --- emain/emain.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emain/emain.ts b/emain/emain.ts index 536ab339..fa22f2e3 100644 --- a/emain/emain.ts +++ b/emain/emain.ts @@ -251,7 +251,7 @@ process.on("SIGUSR1", function () { "window:" + clientData.mainwindowid )) as WaveWindow; await electronApp.whenReady(); - await createWindow(clientData, windowData); + createWindow(clientData, windowData); electronApp.on("activate", () => { if (electron.BrowserWindow.getAllWindows().length === 0) {