diff --git a/src/main/ipc.ts b/src/main/ipc.ts index 5fcf6f8..78473b5 100644 --- a/src/main/ipc.ts +++ b/src/main/ipc.ts @@ -111,7 +111,12 @@ ipcMain.handle(IpcEvents.SELECT_VENCORD_DIR, async () => { if (!res.filePaths.length) return "cancelled"; const dir = res.filePaths[0]; - for (const file of ["vencordDesktopMain.js", "preload.js", "vencordDesktopRenderer.js", "vencordDesktopRenderer.css"]) { + for (const file of [ + "vencordDesktopMain.js", + "preload.js", + "vencordDesktopRenderer.js", + "vencordDesktopRenderer.css" + ]) { if (!existsSync(join(dir, file))) return "invalid"; }