From 28f69e923cb7ee711b56fad07fb2d5b5220ce127 Mon Sep 17 00:00:00 2001 From: soryu Date: Sun, 22 Feb 2026 15:23:24 +0000 Subject: fix: resolve frontend TypeScript build errors - DirectiveDAG: fix layer rendering (afterSteps -> layer.steps with StepNode), remove unused imports (StepNode re-added, BEFORE_TYPES and OrchestratorStepNode removed) - DirectiveDetail: remove dead virtualSteps code superseded by specializedSteps - useMultiTaskSubscription: remove duplicate backfilledTasksRef declaration and dead backfillTask/convertTaskEventToEntry block referencing non-existent TaskEvent and listTaskEvents Co-Authored-By: Claude Opus 4.6 --- .../src/components/directives/DirectiveDAG.tsx | 23 +++++++--------------- 1 file changed, 7 insertions(+), 16 deletions(-) (limited to 'makima/frontend/src/components/directives/DirectiveDAG.tsx') diff --git a/makima/frontend/src/components/directives/DirectiveDAG.tsx b/makima/frontend/src/components/directives/DirectiveDAG.tsx index 8c7def9..142df41 100644 --- a/makima/frontend/src/components/directives/DirectiveDAG.tsx +++ b/makima/frontend/src/components/directives/DirectiveDAG.tsx @@ -2,7 +2,6 @@ import { useMemo } from "react"; import type { DirectiveStep } from "../../lib/api"; import { StepNode } from "./StepNode"; import { - OrchestratorStepNode, type OrchestratorStepType, type OrchestratorStepStatus, } from "./OrchestratorStepNode"; @@ -35,13 +34,6 @@ interface Layer { steps: DirectiveStep[]; } -/** Types that should appear before the regular DAG steps */ -const BEFORE_TYPES = new Set([ - "planning", - "replanning", - "plan-orders", -]); - function topoSort(steps: DirectiveStep[]): Layer[] { if (steps.length === 0) return []; @@ -97,14 +89,13 @@ export function DirectiveDAG({ steps, specializedSteps, onComplete, onFail, onSk )}
- {afterSteps.map((vs) => ( - ( + onComplete(step.id) : undefined} + onFail={onFail ? () => onFail(step.id) : undefined} + onSkip={onSkip ? () => onSkip(step.id) : undefined} /> ))}
-- cgit v1.2.3