diff --git a/frontend/src/components/PodView.tsx b/frontend/src/components/PodView.tsx index ba743ee..96001d3 100644 --- a/frontend/src/components/PodView.tsx +++ b/frontend/src/components/PodView.tsx @@ -8,7 +8,6 @@ import { EyeIcon, GitBranchIcon, ExternalLinkIcon, - FileTextIcon, MessageSquareIcon, MonitorUpIcon, PanelLeftIcon, @@ -773,6 +772,7 @@ function StreamStat({ label, value }: { label: string; value: number }) { function ActivityItem({ event }: { event: PodActivityEvent }) { const Icon = activityIcon(event.kind); const metadata = activityMetadata(event); + const title = activityTitle(event); return (
- {event.title} -
+{title}
@@ -889,7 +887,7 @@ const ACTIVITY_CATEGORIES: { { id: 'signal', label: 'Signals', - hint: 'Raw inputs the agent observed — screen vision and git activity.', + hint: 'Screen logs and local git activity routed to this stream.', icon: RadioTowerIcon, }, { @@ -901,7 +899,7 @@ const ACTIVITY_CATEGORIES: { ]; const KIND_LABEL: Record