try to fix mac error

This commit is contained in:
Guille 2024-05-15 14:01:54 +02:00
parent 5c64f61755
commit c631be4296

View File

@ -20,15 +20,12 @@ app.whenReady().then(() => {
Factory.get(param.workflow)
Factory.workflow.run(param.application, param, tmp)
})
console.log(process.platform)
createWindow()
app.on('window-all-closed', () => {
if (process.platform !== 'darwin' && process.platform !== 'ventura') app.quit()
app.quit()
})
})
app.on('window-all-closed', () => {
if (process.platform !== 'darwin' && process.platform !== 'ventura') {
app.quit()
}
app.quit()
})