Skip to content

Commit 12746b7

Browse files
committed
Fix lint
1 parent fd3f5cb commit 12746b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/electron-main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,8 +505,8 @@ app.on("ready", async () => {
505505

506506
global.mainWindow.webContents.on("before-input-event", (event: Event, input: Input): void => {
507507
const exitShortcutPressed =
508-
input.type === "keyDown" && exitShortcuts.some((shortcutFn) => shortcutFn(input, process.platform));
509-
508+
input.type === "keyDown" && exitShortcuts.some((shortcutFn) => shortcutFn(input, process.platform));
509+
510510
// We only care about the exit shortcuts here
511511
if (!exitShortcutPressed || !global.mainWindow) return;
512512

0 commit comments

Comments
 (0)