2
0

fix(engine): 💄 Don't show avatar when only input

This commit is contained in:
Baptiste Arnaud
2022-03-03 19:16:31 +01:00
parent 63a90f2deb
commit 9b8f153579

View File

@ -192,7 +192,7 @@ const ChatChunks = ({
return ( return (
<> <>
<div className="flex"> <div className="flex">
{hostAvatar.isEnabled && ( {hostAvatar.isEnabled && bubbles.length > 0 && (
<AvatarSideContainer <AvatarSideContainer
ref={avatarSideContainerRef} ref={avatarSideContainerRef}
hostAvatarSrc={hostAvatar.src} hostAvatarSrc={hostAvatar.src}