diff --git a/frontend/src/views/admin/AdminLayoutView.vue b/frontend/src/views/admin/AdminLayoutView.vue index a17738f..ed4570a 100644 --- a/frontend/src/views/admin/AdminLayoutView.vue +++ b/frontend/src/views/admin/AdminLayoutView.vue @@ -20,7 +20,6 @@ const navItems = [ ] const currentSeason = computed(() => store.adminSeasonDetail) -const currentNavItem = computed(() => navItems.find((item) => route.path === item.to) ?? navItems[0]) const seasonSummary = computed(() => [ { label: 'Kategorien', value: currentSeason.value.categories.length }, { label: 'Kandidaten', value: currentSeason.value.candidates.length }, @@ -34,32 +33,7 @@ onMounted(async () => {