Skip to content

Commit 08a7772

Browse files
johnny/VIDSOL-211-revert camera/mic buttons changes
revert to later cause it breaks a lot of integration tests
1 parent 3b4124f commit 08a7772

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/MeetingRoom/DeviceControlButton/DeviceControlButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const DeviceControlButton = ({
7171
const renderControlIcon = () => {
7272
if (isAudio) {
7373
if (!isMicrophoneControlAllowed) {
74-
return <MicOff className="text-gray-400" />;
74+
return <Mic className="text-gray-400" />;
7575
}
7676
if (isAudioEnabled) {
7777
return <Mic className="text-white" />;
@@ -80,7 +80,7 @@ const DeviceControlButton = ({
8080
}
8181

8282
if (!isCameraControlAllowed) {
83-
return <VideocamOffIcon className="text-gray-400" />;
83+
return <VideocamIcon className="text-gray-400" />;
8484
}
8585
if (isVideoEnabled) {
8686
return <VideocamIcon className="text-white" />;

0 commit comments

Comments
 (0)