fix: use gear glyph for LLM call events in pipeline log

This commit is contained in:
jlightner 2026-03-31 02:56:50 +00:00
parent dc7bb83c9d
commit 5490999fd1

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 "·";
} }