fix: swap robot emoji for diamond glyph on LLM call events

This commit is contained in:
jlightner 2026-03-31 02:52:25 +00:00
parent 7127237afe
commit dc7bb83c9d

View file

@ -71,7 +71,7 @@ function eventTypeIcon(eventType: string): string {
case "error": case "error":
return "✗"; return "✗";
case "llm_call": case "llm_call":
return "🤖"; return "";
default: default:
return "·"; return "·";
} }