diff --git a/ui/desktop/src/App.tsx b/ui/desktop/src/App.tsx index 79c3ca219c7b..266a0f7fd520 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);