diff --git a/electron/handlers/app.ts b/electron/handlers/app.ts index 022e4d61a..3738a7970 100644 --- a/electron/handlers/app.ts +++ b/electron/handlers/app.ts @@ -29,7 +29,8 @@ export function handleAppIPCs() { * @param _event - The IPC event object. */ ipcMain.handle("openAppDirectory", async (_event) => { - shell.openPath(app.getPath("userData")); + const userSpacePath = join(app.getPath('home'), 'jan') + shell.openPath(userSpacePath); }); /**