From c7425694f831941401ddee84ad7a4f4404d76233 Mon Sep 17 00:00:00 2001 From: Zane <75694352+zanesq@users.noreply.github.com> Date: Mon, 28 Jul 2025 14:17:15 -0700 Subject: [PATCH] fix cmd + , not opening settings (#3694) --- ui/desktop/src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/desktop/src/App.tsx b/ui/desktop/src/App.tsx index 79c3ca21..266a0f7f 100644 --- a/ui/desktop/src/App.tsx +++ b/ui/desktop/src/App.tsx @@ -1156,9 +1156,9 @@ export default function App() { ); if (section && newView === 'settings') { - window.history.replaceState({}, '', `/settings?section=${section}`); + window.location.hash = `#/settings?section=${section}`; } else { - window.history.replaceState({}, '', `/${newView}`); + window.location.hash = `#/${newView}`; } }; const urlParams = new URLSearchParams(window.location.search);