diff --git a/packages/electron-app/electron/main/main.ts b/packages/electron-app/electron/main/main.ts index 60240886..071c5620 100644 --- a/packages/electron-app/electron/main/main.ts +++ b/packages/electron-app/electron/main/main.ts @@ -505,7 +505,6 @@ app.on("before-quit", async (event) => { }) app.on("window-all-closed", () => { - if (process.platform !== "darwin") { - app.quit() - } + // CodeNomad supports a single window; closing it should quit the app on all platforms. + app.quit() })