Ultra-Premium Redesign of Auth System and critical Map fixes

This commit is contained in:
2026-03-01 15:20:49 -05:00
parent 8a6b9fe5e8
commit 66b76cee61
6 changed files with 705 additions and 452 deletions

View File

@ -16,7 +16,11 @@ const authStore = useAuthStore()
const favoritesStore = useFavoritesStore()
const isSplashScreen = computed(() => route.name === 'splash')
const isAuthScreen = computed(() => route.name === 'auth' || route.path === '/login')
const isAuthScreen = computed(() => {
const name = route.name?.toString().toLowerCase() || ''
const path = route.path.toLowerCase()
return name.includes('auth') || path.includes('/login') || path.includes('/register')
})
onMounted(() => {
themeStore.applyTheme()