diff --git a/apps/web/index.html b/apps/web/index.html index 35628f3..0713fbf 100644 --- a/apps/web/index.html +++ b/apps/web/index.html @@ -4,6 +4,13 @@
+
{account.error}
)} diff --git a/apps/web/src/components/AgentOutputViewer.tsx b/apps/web/src/components/AgentOutputViewer.tsx index 82c47a2..3eaaeb3 100644 --- a/apps/web/src/components/AgentOutputViewer.tsx +++ b/apps/web/src/components/AgentOutputViewer.tsx @@ -95,21 +95,21 @@ export function AgentOutputViewer({ agentId, agentName, status, onStop }: AgentO const hasOutput = messages.length > 0; return ( -+
Conflicts detected:
-+ No results +
+ ) : ( + Array.from(groups.entries()).map(([group, groupItems]) => ( ++ {group} +
+ {groupItems.map((item) => { + const isActive = flatIndex === activeIndex; + const idx = flatIndex; + flatIndex++; + const Icon = item.icon; + return ( + + ); + })} +{title}
+ {description && ( +{description}
+ )} ++ {message ?? "Something went wrong"} +
+ {onRetry && ( + + )} ++
This phase is pending review. Switch to the{" "} Review tab to view the diff and approve.
@@ -322,7 +322,7 @@ export function PhaseDetailPanel({ diff --git a/apps/web/src/components/pipeline/PipelineTaskCard.tsx b/apps/web/src/components/pipeline/PipelineTaskCard.tsx index f4ba25e..1035fb2 100644 --- a/apps/web/src/components/pipeline/PipelineTaskCard.tsx +++ b/apps/web/src/components/pipeline/PipelineTaskCard.tsx @@ -5,11 +5,11 @@ import { useExecutionContext } from "@/components/execution"; import type { SerializedTask } from "@/components/TaskRow"; const statusConfig: Record