From a5f9a0cc03beb010d1a0c9c0e62d6c8d6021fc7b Mon Sep 17 00:00:00 2001 From: Alejandro Parcet Date: Wed, 9 Aug 2023 12:38:16 +0200 Subject: [PATCH] fix: removed await because it was blocking the startup of Bazecor --- src/main/createWindow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/createWindow.ts b/src/main/createWindow.ts index c03b8279f..b0d37d8ce 100644 --- a/src/main/createWindow.ts +++ b/src/main/createWindow.ts @@ -48,7 +48,7 @@ const createWindow = async (): Promise => { mainWindowState.manage(mainWindow); // and load the index.html of the app. - await mainWindow.loadURL(MAIN_WINDOW_WEBPACK_ENTRY); + mainWindow.loadURL(MAIN_WINDOW_WEBPACK_ENTRY); Window.getInstance(); // init Windows manager Window.setWindow(mainWindow);