fix(web): Update PipelineTab to use renamed PlanSection component

This commit is contained in:
Lukas May
2026-02-10 10:55:59 +01:00
parent ca548c1eaa
commit 57a5843324

View File

@@ -9,7 +9,7 @@ import {
ExecutionProvider,
useExecutionContext,
TaskModal,
BreakdownSection,
PlanSection,
type PhaseData,
type FlatTaskEntry,
} from "@/components/execution";
@@ -92,7 +92,7 @@ function PipelineTabInner({ initiativeId, phases, phasesLoading }: PipelineTabPr
// Empty state
if (!phasesLoading && phases.length === 0) {
return (
<BreakdownSection
<PlanSection
initiativeId={initiativeId}
phasesLoaded={!phasesLoading}
phases={phases}