diff --git a/app/(app)/products/[id]/page.tsx b/app/(app)/products/[id]/page.tsx
index d81c678..3ce0e49 100644
--- a/app/(app)/products/[id]/page.tsx
+++ b/app/(app)/products/[id]/page.tsx
@@ -127,9 +127,10 @@ export default async function ProductBacklogPage({ params, searchParams }: Props
return (
- {/* Product header — sprint-switcher links, actions rechts */}
-
-
+ {/* Product header — sprint-switcher gecentreerd, actions rechts */}
+
+
+
{isActiveProduct && (
)}
-
+
{!isActiveProduct && (
)}
diff --git a/components/shared/sprint-switcher.tsx b/components/shared/sprint-switcher.tsx
index 1419a51..b240af1 100644
--- a/components/shared/sprint-switcher.tsx
+++ b/components/shared/sprint-switcher.tsx
@@ -105,27 +105,16 @@ export function SprintSwitcher({
)}
-
+
{sprints.map(s => (
handleSwitchSprint(s.id)}
className={cn(
- 'flex items-center justify-between gap-2',
s.id === activeSprint?.id && 'bg-primary-container text-primary-container-foreground font-medium',
)}
>
{s.code}
-
- {buildingSet.has(s.id) ? 'BUILDING' : SPRINT_STATUS_LABEL[s.status]}
-
))}