diff --git a/src/components/DefaultVideo/DefaultVideo.tsx b/src/components/DefaultVideo/DefaultVideo.tsx index c01fd79e8..7145045ee 100644 --- a/src/components/DefaultVideo/DefaultVideo.tsx +++ b/src/components/DefaultVideo/DefaultVideo.tsx @@ -61,6 +61,15 @@ export const DefaultVideo = React.forwardRef { + const videoElement = videoRef.current; + + if (videoElement && initiallyMuted) { + videoElement.defaultMuted = true; + } + }, [videoRef, initiallyMuted]); + const onPlayToggle = React.useCallback(() => { setIsPaused((value) => { if (value) {