fix functions existing and delete

This commit is contained in:
Adrian Zürcher
2025-11-07 08:34:53 +01:00
parent aba4bafb65
commit db96732a62
6 changed files with 14 additions and 13 deletions

View File

@@ -21,7 +21,7 @@ onMounted(() => {
const forwardToPage = async () => {
await nextTick();
const lastRoute = sessionStorage.getItem('lastRoute') || '/members';
const lastRoute = localStorage.getItem('lastRoute') || '/members';
await router.push(lastRoute);
};
</script>