Skip to content

Commit

Permalink
fix: text copy
Browse files Browse the repository at this point in the history
  • Loading branch information
raviteja83 committed Feb 27, 2024
1 parent 61cccf7 commit b0ccc8e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const MuteUnmuteOption = ({ roleName, peerList }: { peerList: HMSPeer[]; roleNam
<Dropdown.Item css={dropdownItemCSS} onClick={() => setTrackEnabled('audio', false)}>
<MicOffIcon />
<Text variant="sm" css={optionTextCSS}>
Mute Audio
Mute Audio for All
</Text>
</Dropdown.Item>
) : null}
Expand All @@ -72,7 +72,7 @@ const MuteUnmuteOption = ({ roleName, peerList }: { peerList: HMSPeer[]; roleNam
<Dropdown.Item css={dropdownItemCSS} onClick={() => setTrackEnabled('audio', true)}>
<MicOnIcon />
<Text variant="sm" css={optionTextCSS}>
Unmute Audio
Unmute Audio for All
</Text>
</Dropdown.Item>
) : null}
Expand All @@ -85,7 +85,7 @@ const MuteUnmuteOption = ({ roleName, peerList }: { peerList: HMSPeer[]; roleNam
<Dropdown.Item css={dropdownItemCSS} onClick={() => setTrackEnabled('video', false)}>
<VideoOffIcon />
<Text variant="sm" css={optionTextCSS}>
Mute Video
Mute Video for All
</Text>
</Dropdown.Item>
) : null}
Expand All @@ -94,7 +94,7 @@ const MuteUnmuteOption = ({ roleName, peerList }: { peerList: HMSPeer[]; roleNam
<Dropdown.Item css={dropdownItemCSS} onClick={() => setTrackEnabled('video', true)}>
<VideoOnIcon />
<Text variant="sm" css={optionTextCSS}>
Unmute Video
Unmute Video for All
</Text>
</Dropdown.Item>
) : null}
Expand Down

0 comments on commit b0ccc8e

Please sign in to comment.