Skip to content

Commit

Permalink
fix: removed await because it was blocking the startup of Bazecor
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDygma committed Aug 9, 2023
1 parent 2f5af33 commit a5f9a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/createWindow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const createWindow = async (): Promise<void> => {
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);
Expand Down

0 comments on commit a5f9a0c

Please # to comment.