Skip to content

Commit

Permalink
fix: prettier errors
Browse files Browse the repository at this point in the history
  • Loading branch information
amilajack committed Sep 16, 2023
1 parent 0d8ea56 commit 1391ce9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const installExtensions = async () => {
return installer
.default(
extensions.map((name) => installer[name]),
forceDownload
forceDownload,
)
.catch(console.log);
};
Expand Down
8 changes: 4 additions & 4 deletions src/main/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export default class MenuBuilder {
label: 'Documentation',
click() {
shell.openExternal(
'https://github.com/electron/electron/tree/main/docs#readme'
'https://github.com/electron/electron/tree/main/docs#readme',
);
},
},
Expand Down Expand Up @@ -228,7 +228,7 @@ export default class MenuBuilder {
accelerator: 'F11',
click: () => {
this.mainWindow.setFullScreen(
!this.mainWindow.isFullScreen()
!this.mainWindow.isFullScreen(),
);
},
},
Expand All @@ -246,7 +246,7 @@ export default class MenuBuilder {
accelerator: 'F11',
click: () => {
this.mainWindow.setFullScreen(
!this.mainWindow.isFullScreen()
!this.mainWindow.isFullScreen(),
);
},
},
Expand All @@ -265,7 +265,7 @@ export default class MenuBuilder {
label: 'Documentation',
click() {
shell.openExternal(
'https://github.com/electron/electron/tree/main/docs#readme'
'https://github.com/electron/electron/tree/main/docs#readme',
);
},
},
Expand Down

0 comments on commit 1391ce9

Please sign in to comment.