From 21659d7adae6765ee08b51d3ecc80e144555064f Mon Sep 17 00:00:00 2001 From: Zachary Robinson Date: Thu, 16 Nov 2023 13:32:42 -0500 Subject: [PATCH] Fix indent --- src/main/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/index.ts b/src/main/index.ts index 9a87a53..bd25ba6 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -14,9 +14,9 @@ ipcMain.on("electron-store-set", async (_event, key, val) => { }); function createWindow(): void { - if (is.dev) { // Assuming is.dev is a flag for development mode - store.openInEditor(); -} + if (is.dev) { + store.openInEditor(); + } // Create the browser window. const mainWindow = new BrowserWindow({ width: 900,