We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee29bb6 commit a384fa8Copy full SHA for a384fa8
src/handleError.js
@@ -19,7 +19,6 @@ function handleError (err) {
19
}
20
21
logger.error(String(err))
22
- // @ts-ignore
23
criticalErrorDialog(err)
24
25
src/index.js
@@ -58,8 +58,7 @@ async function run () {
58
try {
59
await app.whenReady()
60
} catch (e) {
61
62
- dialog.showErrorBox('Electron could not start', e.stack)
+ dialog.showErrorBox('Electron could not start', String(e))
63
app.exit(1)
64
65
0 commit comments