diff --git a/frontend/src/components/NormalizedConversation/DisplayConversationEntry.tsx b/frontend/src/components/NormalizedConversation/DisplayConversationEntry.tsx index 63c72434..13cad66a 100644 --- a/frontend/src/components/NormalizedConversation/DisplayConversationEntry.tsx +++ b/frontend/src/components/NormalizedConversation/DisplayConversationEntry.tsx @@ -497,16 +497,12 @@ const ToolCallCard: React.FC<{
- {entryType ? ( - - {getStatusIndicator(entryType)} - {getEntryIcon(entryType)} - - ) : ( - {label} - )} - {showInlineSummary && ( + {entryType && getStatusIndicator(entryType)} + {entryType && getEntryIcon(entryType)} + {showInlineSummary ? ( {inlineText} + ) : ( + {label} )}