summaryrefslogtreecommitdiff
path: root/makima/frontend/src/components/directives/DirectiveDetail.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'makima/frontend/src/components/directives/DirectiveDetail.tsx')
-rw-r--r--makima/frontend/src/components/directives/DirectiveDetail.tsx29
1 files changed, 0 insertions, 29 deletions
diff --git a/makima/frontend/src/components/directives/DirectiveDetail.tsx b/makima/frontend/src/components/directives/DirectiveDetail.tsx
index 171654d..8f39207 100644
--- a/makima/frontend/src/components/directives/DirectiveDetail.tsx
+++ b/makima/frontend/src/components/directives/DirectiveDetail.tsx
@@ -177,35 +177,6 @@ export function DirectiveDetail({
setEditingGoal(false);
};
- // Build virtual steps for orchestrator tasks to display in the DAG
- const virtualSteps = useMemo(() => {
- const steps: VirtualStep[] = [];
- if (directive.orchestratorTaskId) {
- const hasOrchestratorQuestions = directiveQuestions.some(
- (q) => q.taskId === directive.orchestratorTaskId
- );
- steps.push({
- type: "planning",
- taskId: directive.orchestratorTaskId,
- status: "running",
- label: "Planning",
- hasQuestions: hasOrchestratorQuestions,
- });
- }
- if (directive.completionTaskId) {
- const hasCompletionQuestions = directiveQuestions.some(
- (q) => q.taskId === directive.completionTaskId
- );
- steps.push({
- type: directive.prUrl ? "pr-update" : "pr",
- taskId: directive.completionTaskId,
- status: "running",
- label: directive.prUrl ? "Updating PR" : "Creating PR",
- hasQuestions: hasCompletionQuestions,
- });
- }
- return steps;
- }, [directive.orchestratorTaskId, directive.completionTaskId, directive.prUrl, directiveQuestions]);
return (
<div className="flex flex-col h-full overflow-y-auto">