diff --git a/src/VideoGrid.jsx b/src/VideoGrid.jsx index 1832f0f..d913b03 100644 --- a/src/VideoGrid.jsx +++ b/src/VideoGrid.jsx @@ -333,6 +333,10 @@ function ParticipantTile({ style, participant, remove, ...rest }) { useEffect(() => { if (participant.stream) { + if (participant.local) { + videoRef.current.muted = true; + } + videoRef.current.srcObject = participant.stream; videoRef.current.play(); } else { @@ -343,7 +347,7 @@ function ParticipantTile({ style, participant, remove, ...rest }) { return (
{participant.userId}
-
); }