diff --git a/apps/fabro-web/app/routes/run-stages.tsx b/apps/fabro-web/app/routes/run-stages.tsx index d8991a604..b3396d01d 100644 --- a/apps/fabro-web/app/routes/run-stages.tsx +++ b/apps/fabro-web/app/routes/run-stages.tsx @@ -14,6 +14,7 @@ import { FunnelIcon, MagnifyingGlassIcon, } from "@heroicons/react/16/solid"; +import { CircleStackIcon, ClockIcon } from "@heroicons/react/20/solid"; import { Marked } from "marked"; import { StageSidebar } from "../components/stage-sidebar"; @@ -401,6 +402,7 @@ function EventRow({ onSelect: () => void; }) { const metric = turnMetric(turn); + const MetricIcon = metric == null ? null : turn.kind === "assistant" ? CircleStackIcon : ClockIcon; return (