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 1fa590b9e0
commit c23bc2314d

View file

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