diff --git a/src/home/CallTypeDropdown.tsx b/src/home/CallTypeDropdown.tsx index b84dd773..454813b0 100644 --- a/src/home/CallTypeDropdown.tsx +++ b/src/home/CallTypeDropdown.tsx @@ -43,7 +43,7 @@ export const CallTypeDropdown: FC = ({ callType, setCallType }) => { {(props) => ( @@ -55,9 +55,9 @@ export const CallTypeDropdown: FC = ({ callType, setCallType }) => { )} - + - Radio call + Walkie-talkie call {callType === CallType.Radio && ( )} diff --git a/src/home/RegisteredView.jsx b/src/home/RegisteredView.jsx index aaa8a339..1d07d1c7 100644 --- a/src/home/RegisteredView.jsx +++ b/src/home/RegisteredView.jsx @@ -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 ( <> diff --git a/src/home/UnauthenticatedView.jsx b/src/home/UnauthenticatedView.jsx index 6af34c51..f324d504 100644 --- a/src/home/UnauthenticatedView.jsx +++ b/src/home/UnauthenticatedView.jsx @@ -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 ( <> diff --git a/src/room/AudioPreview.jsx b/src/room/AudioPreview.jsx index 32dfd138..1472695e 100644 --- a/src/room/AudioPreview.jsx +++ b/src/room/AudioPreview.jsx @@ -33,7 +33,7 @@ export function AudioPreview({ }) { return ( <> -

{`${roomName} - Radio Call`}

+

{`${roomName} - Walkie-talkie call`}

{state === GroupCallState.LocalCallFeedUninitialized && (