feat: add thinking indicator for in-progress items

This commit is contained in:
Nathan Flurry 2026-01-27 21:04:30 -08:00
parent 962512a0db
commit e00b6f5d5f
2 changed files with 34 additions and 0 deletions

View file

@ -61,6 +61,12 @@ const ChatMessages = ({
{entry.deltaText}
{isInProgress && <span className="cursor" />}
</span>
) : isInProgress ? (
<span className="thinking-indicator">
<span className="thinking-dot" />
<span className="thinking-dot" />
<span className="thinking-dot" />
</span>
) : (
<span className="muted">No content yet.</span>
)}