Skip to content

Commit b9d0dc1

Browse files
Update packages/compass/src/main/window-manager.ts
Co-authored-by: Sergey Petushkov <[email protected]>
1 parent d63ab8f commit b9d0dc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/compass/src/main/window-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,9 @@ class CompassWindowManager {
271271
const bw = BrowserWindow.fromWebContents(evt.sender);
272272
return getWindowAutoConnectPreferences(bw, compassApp.preferences);
273273
},
274-
'test:show-connect-window': () => showConnectWindow(compassApp),
274+
'test:show-connect-window': () => void showConnectWindow(compassApp),
275275
'app:connect-in-new-window': (event, connectionId: string) =>
276-
showConnectWindow(compassApp, { connectionId }),
276+
void showConnectWindow(compassApp, { connectionId }),
277277
});
278278

279279
ipcMain?.on('show-file', (evt, filename: string) => {

0 commit comments

Comments
 (0)