From 8ac67311d84b590fb54e357c55d6cf8f607bab2b Mon Sep 17 00:00:00 2001 From: Shantur Rathore Date: Thu, 19 Feb 2026 23:51:25 +0000 Subject: [PATCH] ui: use emoji status icons for tool calls --- packages/ui/src/components/tool-call.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/ui/src/components/tool-call.tsx b/packages/ui/src/components/tool-call.tsx index 97164b1b..94560fc6 100644 --- a/packages/ui/src/components/tool-call.tsx +++ b/packages/ui/src/components/tool-call.tsx @@ -576,13 +576,13 @@ export default function ToolCall(props: ToolCallProps) { const status = toolState()?.status || "" switch (status) { case "pending": - return "⏸" - case "running": return "⏳" + case "running": + return "🔄" case "completed": - return "✓" + return "✅" case "error": - return "✗" + return "⚠️" default: return "" }