app/components/base/chat/chat/answer/agent-content.tsx
@@ -11,12 +11,10 @@ type AgentContentProps = { item: ChatItem responding?: boolean content?: string } const AgentContent: FC<AgentContentProps> = ({ item, responding, content, }) => { const { annotation, @@ -28,7 +26,7 @@ return ( <div> {content ? <Markdown content={content} /> : agent_thoughts?.map((thought, index) => ( {agent_thoughts?.map((thought, index) => ( <div key={index} className='px-2 py-1'> {thought.thought && ( <Markdown content={thought.thought} />