From 1391ce9a5add5f05fe85b337c0b7ec777a963aef Mon Sep 17 00:00:00 2001 From: Amila Welihinda Date: Sat, 16 Sep 2023 11:05:16 -0700 Subject: [PATCH] fix: prettier errors --- src/main/main.ts | 2 +- src/main/menu.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/main.ts b/src/main/main.ts index 327b81f00e..05b44eb4fb 100644 --- a/src/main/main.ts +++ b/src/main/main.ts @@ -51,7 +51,7 @@ const installExtensions = async () => { return installer .default( extensions.map((name) => installer[name]), - forceDownload + forceDownload, ) .catch(console.log); }; diff --git a/src/main/menu.ts b/src/main/menu.ts index c8c57558b2..ba0fb77096 100644 --- a/src/main/menu.ts +++ b/src/main/menu.ts @@ -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', ); }, }, @@ -228,7 +228,7 @@ export default class MenuBuilder { accelerator: 'F11', click: () => { this.mainWindow.setFullScreen( - !this.mainWindow.isFullScreen() + !this.mainWindow.isFullScreen(), ); }, }, @@ -246,7 +246,7 @@ export default class MenuBuilder { accelerator: 'F11', click: () => { this.mainWindow.setFullScreen( - !this.mainWindow.isFullScreen() + !this.mainWindow.isFullScreen(), ); }, }, @@ -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', ); }, },