Merge pull request #20551 from Scroody/i-20529

Fix: Avatar is transparent in cc
This commit is contained in:
Ramón Souza 2024-06-21 15:06:55 -03:00 committed by GitHub
commit 1e757c21f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ const AudioCaptionsLive: React.FC<AudioCaptionsLiveProps> = ({
color={user.color}
moderator={user.isModerator}
>
{user.name.slice(0, 2)}
{user.avatar ? '' : user.name.slice(0, 2)}
</Styled.UserAvatar>
</Styled.UserAvatarWrapper>
)}