diff --git a/apps/ui/src/components/views/running-agents-view.tsx b/apps/ui/src/components/views/running-agents-view.tsx index 53c621da..fb1ded96 100644 --- a/apps/ui/src/components/views/running-agents-view.tsx +++ b/apps/ui/src/components/views/running-agents-view.tsx @@ -174,7 +174,10 @@ export function RunningAgentsView() { )} {agent.description && ( -

+

{agent.description}

)} @@ -228,7 +231,9 @@ export function RunningAgentsView() { open={true} onClose={() => setSelectedAgent(null)} projectPath={selectedAgent.projectPath} - featureDescription={selectedAgent.description || selectedAgent.title || selectedAgent.featureId} + featureDescription={ + selectedAgent.description || selectedAgent.title || selectedAgent.featureId + } featureId={selectedAgent.featureId} featureStatus="running" />