Merge pull request #228 from multica-ai/fix/tool-empty-div-flicker
fix(ui): prevent empty div flicker between tool transitions
This commit is contained in:
commit
c10ad352e0
1 changed files with 2 additions and 2 deletions
|
|
@ -119,8 +119,8 @@ export const MessageList = memo(function MessageList({
|
|||
<ThinkingItem thinking={thinking} isStreaming={isStreaming} />
|
||||
)}
|
||||
|
||||
{/* Render text content (if any) */}
|
||||
{(text || isStreaming) && (
|
||||
{/* Render text content (if any) - require actual text, not just streaming state */}
|
||||
{text && (
|
||||
<div
|
||||
className={cn(
|
||||
"flex items-center gap-1.5",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue