revert 04358e9c91
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

revert feat: make settings menu remember your page on reload

it breaks the back button, my bad
This commit is contained in:
Twig 2025-07-10 19:37:04 +00:00
parent 04358e9c91
commit 71242d0543

View file

@ -98,7 +98,6 @@ let currentPage = ref(categories[0].pages[0]);
let selectedPage = ref(currentPage.value.displayName); // used to highlight the current channel
function selectCategory(page: Page) {
window.location.hash = page.displayName.toLowerCase()
currentPage.value = page;
selectedPage.value = page.displayName;
};