diff --git a/src/button/Button.tsx b/src/button/Button.tsx index dfea6e16..e4ad8eb2 100644 --- a/src/button/Button.tsx +++ b/src/button/Button.tsx @@ -142,7 +142,9 @@ export const MicButton: FC<{ }> = ({ muted, ...rest }) => { const { t } = useTranslation(); const Icon = muted ? MicOffSolidIcon : MicOnSolidIcon; - const label = muted ? t("unmute_microphone_button_label") : t("mute_microphone_button_label"); + const label = muted + ? t("unmute_microphone_button_label") + : t("mute_microphone_button_label"); return ( @@ -160,7 +162,9 @@ export const VideoButton: FC<{ }> = ({ muted, ...rest }) => { const { t } = useTranslation(); const Icon = muted ? VideoCallOffSolidIcon : VideoCallSolidIcon; - const label = muted ? t("start_video_button_label") : t("stop_video_button_label"); + const label = muted + ? t("start_video_button_label") + : t("stop_video_button_label"); return ( @@ -178,7 +182,9 @@ export const ScreenshareButton: FC<{ [index: string]: unknown; }> = ({ enabled, className, ...rest }) => { const { t } = useTranslation(); - const label = enabled ? t("stop_screenshare_button_label") : t("screenshare_button_label"); + const label = enabled + ? t("stop_screenshare_button_label") + : t("screenshare_button_label"); return ( @@ -254,7 +260,9 @@ export const FullscreenButton: FC = ({ }) => { const { t } = useTranslation(); const Icon = fullscreen ? FullscreenExit : Fullscreen; - const label = fullscreen ? t("exit_fullscreen_button_label") : t("fullscreen_button_label"); + const label = fullscreen + ? t("exit_fullscreen_button_label") + : t("fullscreen_button_label"); return ( diff --git a/src/home/JoinExistingCallModal.tsx b/src/home/JoinExistingCallModal.tsx index 48200e31..85d4adde 100644 --- a/src/home/JoinExistingCallModal.tsx +++ b/src/home/JoinExistingCallModal.tsx @@ -37,7 +37,11 @@ export const JoinExistingCallModal: FC = ({ const { t } = useTranslation(); return ( - +

{t("join_existing_call_modal.text")}

diff --git a/src/room/AppSelectionModal.tsx b/src/room/AppSelectionModal.tsx index 2a2266ee..1a9009f5 100644 --- a/src/room/AppSelectionModal.tsx +++ b/src/room/AppSelectionModal.tsx @@ -76,7 +76,11 @@ export const AppSelectionModal: FC = ({ roomId }) => { }, [roomId, roomSharedKey]); return ( - + {t("app_selection_modal.text")} diff --git a/src/room/RageshakeRequestModal.tsx b/src/room/RageshakeRequestModal.tsx index 82252f4e..5d3280e0 100644 --- a/src/room/RageshakeRequestModal.tsx +++ b/src/room/RageshakeRequestModal.tsx @@ -44,7 +44,11 @@ export const RageshakeRequestModal: FC = ({ }, [sent, onDismiss]); return ( - + {t("rageshake_request_modal.body")}