diff options
Diffstat (limited to 'makima/frontend/src/components/contracts/ContractDetail.tsx')
| -rw-r--r-- | makima/frontend/src/components/contracts/ContractDetail.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/makima/frontend/src/components/contracts/ContractDetail.tsx b/makima/frontend/src/components/contracts/ContractDetail.tsx index 6e31c84..e5e65f6 100644 --- a/makima/frontend/src/components/contracts/ContractDetail.tsx +++ b/makima/frontend/src/components/contracts/ContractDetail.tsx @@ -18,7 +18,7 @@ import { PhaseHint } from "./PhaseHint"; import { RepositoryPanel } from "./RepositoryPanel"; import { ContractCliInput } from "./ContractCliInput"; import { PhaseDeliverablesPanel } from "./PhaseDeliverablesPanel"; -import { AutopilotPanel } from "./AutopilotPanel"; +import { CommandModePanel } from "./CommandModePanel"; import { TaskTree } from "../mesh/TaskTree"; type Tab = "overview" | "repos" | "files" | "tasks"; @@ -294,8 +294,8 @@ function OverviewTab({ }) { return ( <div className="space-y-6"> - {/* Autopilot controls */} - <AutopilotPanel contract={contract} onUpdate={onRefresh} /> + {/* Command Mode controls */} + <CommandModePanel contract={contract} onUpdate={onRefresh} /> {/* Phase deliverables checklist */} <PhaseDeliverablesPanel |
