(iconName: string)
| 509 | }, [messages]); |
| 510 | |
| 511 | const renderIcon = (iconName: string) => { |
| 512 | const Icon = AGENT_ICONS[iconName as keyof typeof AGENT_ICONS] || Bot; |
| 513 | return <Icon className="h-5 w-5" />; |
| 514 | }; |
| 515 | |
| 516 | const formatDuration = (ms?: number) => { |
| 517 | if (!ms) return "N/A"; |
no outgoing calls
no test coverage detected