Skip to content

Commit 6dae4b6

Browse files
committed
style: fix prettier formatting
1 parent 10fd697 commit 6dae4b6

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

src/main/index.ts

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,16 @@ EventEmitter.defaultMaxListeners = 50
2828

2929
// Register custom protocol for serving renderer in production
3030
// MUST be called before app.ready — silently fails otherwise
31-
protocol.registerSchemesAsPrivileged([{
32-
scheme: 'app',
33-
privileges: {
34-
standard: true,
35-
secure: true,
36-
supportFetchAPI: true,
37-
}
38-
}])
31+
protocol.registerSchemesAsPrivileged([
32+
{
33+
scheme: 'app',
34+
privileges: {
35+
standard: true,
36+
secure: true,
37+
supportFetchAPI: true,
38+
},
39+
},
40+
])
3941

4042
// Global error handlers - must be registered early to catch all errors
4143
process.on('uncaughtException', (error: Error) => {

0 commit comments

Comments
 (0)