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:
Jannis Braun
2026-03-13 01:50:22 +01:00
parent 5f5433eb67
commit 44fd74c7c6
@@ -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' : ''}