From 39ceb8ee6e8047e3cb3e3586fee5f5d1ae640b50 Mon Sep 17 00:00:00 2001 From: Zamitto <167933696+zamitto@users.noreply.github.com> Date: Sat, 15 Feb 2025 23:54:22 -0300 Subject: [PATCH] fix: editor window hash path --- src/main/services/window-manager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/services/window-manager.ts b/src/main/services/window-manager.ts index 3da47644..f51d0e39 100644 --- a/src/main/services/window-manager.ts +++ b/src/main/services/window-manager.ts @@ -245,7 +245,7 @@ export class WindowManager { ); } else { editorWindow.loadFile(path.join(__dirname, "../renderer/index.html"), { - hash: `editor?themeId=${themeId}`, + hash: `theme-editor?themeId=${themeId}`, }); }