From 44fd74c7c666504cff3df831c7a217b93b28eb8a Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Fri, 13 Mar 2026 01:50:22 +0100 Subject: [PATCH] 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. --- packages/web/src/components/voice/VoiceChannel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/components/voice/VoiceChannel.tsx b/packages/web/src/components/voice/VoiceChannel.tsx index e1d77604..11022ab0 100644 --- a/packages/web/src/components/voice/VoiceChannel.tsx +++ b/packages/web/src/components/voice/VoiceChannel.tsx @@ -175,7 +175,7 @@ export function VoiceChannel({ channelId, channelName, onClick, locked, dragStat src={avatar} name={displayName} size={24} - status={status} + userId={member?.user.homeUserId ?? userId} user={member?.user} className={speakingUserIds.has(userId) ? 'rounded-full ring-2 ring-status-online' : ''}