fix: remove redundant status dot from voice channel avatars
Being in a voice channel already implies online status, so the dot is unnecessary and creates a cutout artifact on the speaking ring.
This commit is contained in:
@@ -175,7 +175,7 @@ export function VoiceChannel({ channelId, channelName, onClick, locked, dragStat
|
|||||||
src={avatar}
|
src={avatar}
|
||||||
name={displayName}
|
name={displayName}
|
||||||
size={24}
|
size={24}
|
||||||
status={status}
|
|
||||||
userId={member?.user.homeUserId ?? userId}
|
userId={member?.user.homeUserId ?? userId}
|
||||||
user={member?.user}
|
user={member?.user}
|
||||||
className={speakingUserIds.has(userId) ? 'rounded-full ring-2 ring-status-online' : ''}
|
className={speakingUserIds.has(userId) ? 'rounded-full ring-2 ring-status-online' : ''}
|
||||||
|
|||||||
Reference in New Issue
Block a user