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