Skip to content

Commit

Permalink
last minute s/radio call/walkie-talkie call/ig
Browse files Browse the repository at this point in the history
  • Loading branch information
ara4n committed Jun 7, 2022
1 parent 69cfa1d commit 4f9efb3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/home/CallTypeDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const CallTypeDropdown: FC<Props> = ({ callType, setCallType }) => {
<PopoverMenuTrigger placement="bottom">
<Button variant="dropdown" className={commonStyles.headline}>
<Headline className={styles.label}>
{callType === CallType.Video ? "Video call" : "Radio call"}
{callType === CallType.Video ? "Video call" : "Walkie-talkie call"}
</Headline>
</Button>
{(props) => (
Expand All @@ -55,9 +55,9 @@ export const CallTypeDropdown: FC<Props> = ({ callType, setCallType }) => {
<CheckIcon className={menuStyles.checkIcon} />
)}
</Item>
<Item key={CallType.Radio} textValue="Radio call">
<Item key={CallType.Radio} textValue="Walkie-talkie call">
<MicIcon />
<span>Radio call</span>
<span>Walkie-talkie call</span>
{callType === CallType.Radio && (
<CheckIcon className={menuStyles.checkIcon} />
)}
Expand Down
2 changes: 1 addition & 1 deletion src/home/RegisteredView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function RegisteredView({ client }) {
}, [history, existingRoomId]);

const callNameLabel =
callType === CallType.Video ? "Video call name" : "Radio call name";
callType === CallType.Video ? "Video call name" : "Walkie-talkie call name";

return (
<>
Expand Down
2 changes: 1 addition & 1 deletion src/home/UnauthenticatedView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function UnauthenticatedView() {
);

const callNameLabel =
callType === CallType.Video ? "Video call name" : "Radio call name";
callType === CallType.Video ? "Video call name" : "Walkie-talkie call name";

return (
<>
Expand Down
2 changes: 1 addition & 1 deletion src/room/AudioPreview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function AudioPreview({
}) {
return (
<>
<h1>{`${roomName} - Radio Call`}</h1>
<h1>{`${roomName} - Walkie-talkie call`}</h1>
<div className={styles.preview}>
{state === GroupCallState.LocalCallFeedUninitialized && (
<Body fontWeight="semiBold" className={styles.microphonePermissions}>
Expand Down

0 comments on commit 4f9efb3

Please sign in to comment.