We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63ab8f commit b9d0dc1Copy full SHA for b9d0dc1
packages/compass/src/main/window-manager.ts
@@ -271,9 +271,9 @@ class CompassWindowManager {
271
const bw = BrowserWindow.fromWebContents(evt.sender);
272
return getWindowAutoConnectPreferences(bw, compassApp.preferences);
273
},
274
- 'test:show-connect-window': () => showConnectWindow(compassApp),
+ 'test:show-connect-window': () => void showConnectWindow(compassApp),
275
'app:connect-in-new-window': (event, connectionId: string) =>
276
- showConnectWindow(compassApp, { connectionId }),
+ void showConnectWindow(compassApp, { connectionId }),
277
});
278
279
ipcMain?.on('show-file', (evt, filename: string) => {
0 commit comments