diff --git a/src/frontend/src/features/rooms/components/Join.tsx b/src/frontend/src/features/rooms/components/Join.tsx index 1c943367..caaffd39 100644 --- a/src/frontend/src/features/rooms/components/Join.tsx +++ b/src/frontend/src/features/rooms/components/Join.tsx @@ -339,6 +339,8 @@ const VideoPreview = ({ videoStarted, }) + const isError = cameraMissing || cameraDenied + return (
@@ -367,8 +369,13 @@ const VideoPreview = ({ />
-
-

{hint && t(hint)}

+
+

+ {isError && hint ? t(hint) : null} +

+

+ {!isError && hint ? t(hint) : null} +

{permissionsButtonLabel && (