Fix: Finalize AuthGuard translations, registration link, and restricted offers on map

This commit is contained in:
2026-03-03 12:02:26 -05:00
parent b098c23291
commit a9adc4c4a0
5 changed files with 72 additions and 35 deletions

View File

@ -12,6 +12,11 @@ const mounted = ref(false)
onMounted(() => {
mounted.value = true
// Check if we should start in register mode
const mode = router.currentRoute.value.query.mode
if (mode === 'register') {
isLogin.value = false
}
})
const toggleAuth = () => {