From 6e4f8588834c3de9317500399b078f9afc790caf Mon Sep 17 00:00:00 2001 From: Bastian Masanek Date: Sun, 2 Nov 2025 10:17:23 +0100 Subject: [PATCH] Refactor AreaTabs component to simplify product area IDs - Updated product area IDs for 'experimenta' and 'makerspace' to enhance clarity and navigation consistency. - Maintained existing functionality while improving the overall structure of the AreaTabs component. --- app/components/navigation/AreaTabs.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/navigation/AreaTabs.vue b/app/components/navigation/AreaTabs.vue index c850d45..b49a586 100644 --- a/app/components/navigation/AreaTabs.vue +++ b/app/components/navigation/AreaTabs.vue @@ -15,7 +15,7 @@ interface ProductArea { const areas: ProductArea[] = [ { - id: 'experimenta-annual-passes', + id: 'experimenta', label: 'experimenta Jahreskarten', icon: Sparkles, enabled: true, @@ -23,7 +23,7 @@ const areas: ProductArea[] = [ route: '/experimenta', }, { - id: 'makerspace-annual-passes', + id: 'makerspace', label: 'Makerspace Jahreskarten', icon: Wrench, enabled: true,