mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-10 01:46:23 +00:00
I swear
This commit is contained in:
parent
4dd26270ae
commit
08400692b6
1 changed files with 3 additions and 5 deletions
|
@ -189,11 +189,9 @@ export const VoiceChannelIndicator = ErrorBoundary.wrap(({ userId, isActionButto
|
|||
onClick
|
||||
};
|
||||
|
||||
return <div className={isMessageIndicator ? cl("message-indicator") : undefined}>
|
||||
{isLocked ?
|
||||
<LockedSpeakerIcon {...iconProps} />
|
||||
: <SpeakerIcon {...iconProps} />}
|
||||
</div>;
|
||||
return isLocked ?
|
||||
<LockedSpeakerIcon {...iconProps} />
|
||||
: <SpeakerIcon {...iconProps} />;
|
||||
}}
|
||||
</Tooltip>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue