Skip to content

Commit

Permalink
fix: setting initiallyMuted to true for default video (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyzyl-ool authored Nov 29, 2023
1 parent 4206568 commit 76128c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DefaultVideo/DefaultVideo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface DefaultVideoProps {
export const DefaultVideo = React.forwardRef<DefaultVideoRefType, DefaultVideoProps>(
(props, ref) => {
const {video, qa, customBarControlsClassName} = props;
const {controls, customControlsOptions, muted: initiallyMuted} = video;
const {controls, customControlsOptions, muted: initiallyMuted = true} = video;
const {
muteButtonShown,
positioning,
Expand Down

0 comments on commit 76128c7

Please sign in to comment.