This commit is contained in:
Andrew Pareles 2025-01-22 16:57:02 -08:00
parent c8635a1bdb
commit f7cf44136b

View file

@ -486,7 +486,7 @@ const ChatBubble = ({ chatMessage, isLoading }: { chatMessage: ChatMessage, isLo
const [isEditMode, setIsEditMode] = useState(false)
if (!chatMessage.content) { // don't show if empty
if (!chatMessage.content && !isLoading) { // don't show if empty and not loading (if loading, want to show)
return null
}