From a5dd01e80728c7487a3bede4077cf16cc1a1089d Mon Sep 17 00:00:00 2001 From: MrGarlic1 <61215937+MrGarlic1@users.noreply.github.com> Date: Wed, 8 May 2024 11:30:52 -0400 Subject: [PATCH] fix import order --- src/main/firstLaunch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/firstLaunch.ts b/src/main/firstLaunch.ts index 870f0c4..68c104c 100644 --- a/src/main/firstLaunch.ts +++ b/src/main/firstLaunch.ts @@ -6,7 +6,7 @@ import { app } from "electron"; import { BrowserWindow } from "electron/main"; -import { copyFileSync, mkdirSync, readdirSync, existsSync } from "fs"; +import { copyFileSync, existsSync, mkdirSync, readdirSync } from "fs"; import { join } from "path"; import { SplashProps } from "shared/browserWinProperties"; import { ICON_PATH, VIEW_DIR } from "shared/paths";