From 5e3d77efec9a2d552414e0bca9bba0dc53a7d3e8 Mon Sep 17 00:00:00 2001 From: Padreug Date: Wed, 10 Jun 2026 17:56:18 +0200 Subject: [PATCH] feat(activities): seat Map right after Home in the bottom nav Map is a primary discovery surface for events, so it earns the second slot next to Home instead of sitting at the tail of the auth-gated tabs (My tickets, Hosting). Unchanged auth gating on the other tabs. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/events-app/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/events-app/App.vue b/src/events-app/App.vue index ee16fb1..53b8299 100644 --- a/src/events-app/App.vue +++ b/src/events-app/App.vue @@ -51,6 +51,7 @@ const tabs = computed(() => [ }, isActive: () => inFeedRoute() && !onlyHosting.value, }, + { name: t('events.nav.map'), icon: Map, path: '/events/map' }, { name: t('events.filters.myTickets'), icon: Ticket, @@ -88,7 +89,6 @@ const tabs = computed(() => [ isActive: () => inFeedRoute() && onlyHosting.value, disabled: !isAuthenticated.value, }, - { name: t('events.nav.map'), icon: Map, path: '/events/map' }, { name: t('events.nav.favorites'), icon: Heart,