@@ -17,7 +17,7 @@ const historySubmenu: MenuItemConstructorOptions[] = [{
1717 accelerator : 'CommandOrControl+Shift+H' ,
1818 click ( item , focusedWindow ) {
1919 if ( focusedWindow instanceof BrowserWindow ) {
20- void focusedWindow . loadURL ( store . get ( 'baseUrl' ) ) ;
20+ focusedWindow . loadURL ( store . get ( 'baseUrl' ) ) ;
2121 }
2222 } ,
2323} , {
@@ -41,7 +41,7 @@ const historySubmenu: MenuItemConstructorOptions[] = [{
4141const helpSubmenu : MenuItemConstructorOptions [ ] = [ {
4242 label : `${ appName } Website` ,
4343 click ( ) {
44- void shell . openExternal ( 'https://github.com/1000ch/whale' ) ;
44+ shell . openExternal ( 'https://github.com/1000ch/whale' ) ;
4545 } ,
4646} , {
4747 label : 'Report an Issue...' ,
@@ -53,7 +53,7 @@ ${app.getName()} ${app.getVersion()}
5353Electron ${ process . versions . electron }
5454${ process . platform } ${ process . arch } ${ os . release ( ) } `;
5555
56- void shell . openExternal ( `https://github.com/1000ch/whale/issues/new?body=${ encodeURIComponent ( body ) } ` ) ;
56+ shell . openExternal ( `https://github.com/1000ch/whale/issues/new?body=${ encodeURIComponent ( body ) } ` ) ;
5757 } ,
5858} , {
5959 type : 'separator' ,
@@ -65,7 +65,7 @@ if (process.platform !== 'darwin') {
6565 helpSubmenu . push ( {
6666 role : 'about' ,
6767 click ( ) {
68- void dialog . showMessageBox ( {
68+ dialog . showMessageBox ( {
6969 title : `About ${ appName } ` ,
7070 message : `${ appName } ${ app . getVersion ( ) } ` ,
7171 detail : 'Created by Shogo Sensui' ,
0 commit comments