mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
loading
This commit is contained in:
parent
c8635a1bdb
commit
f7cf44136b
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue