Skip to content

Commit 76128c7

Browse files
authored
fix: setting initiallyMuted to true for default video (#723)
1 parent 4206568 commit 76128c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/DefaultVideo/DefaultVideo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface DefaultVideoProps {
2121
export const DefaultVideo = React.forwardRef<DefaultVideoRefType, DefaultVideoProps>(
2222
(props, ref) => {
2323
const {video, qa, customBarControlsClassName} = props;
24-
const {controls, customControlsOptions, muted: initiallyMuted} = video;
24+
const {controls, customControlsOptions, muted: initiallyMuted = true} = video;
2525
const {
2626
muteButtonShown,
2727
positioning,

0 commit comments

Comments
 (0)