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 325ffe588e
commit 1fa590b9e0

View file

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