diff --git a/src/components/DefaultVideo/DefaultVideo.tsx b/src/components/DefaultVideo/DefaultVideo.tsx index c01fd79e8..b0a88ea03 100644 --- a/src/components/DefaultVideo/DefaultVideo.tsx +++ b/src/components/DefaultVideo/DefaultVideo.tsx @@ -21,7 +21,13 @@ interface DefaultVideoProps { export const DefaultVideo = React.forwardRef( (props, ref) => { const {video, qa, customBarControlsClassName} = props; - const {controls, customControlsOptions, muted: initiallyMuted = true, onVideoEnd} = video; + const { + controls, + customControlsOptions, + muted: initiallyMuted = true, + onVideoEnd, + loop, + } = video; const { muteButtonShown, positioning, @@ -94,6 +100,7 @@ export const DefaultVideo = React.forwardRef