From 6c51752ab46c5d5a30fdc78a087d75179b9b5cde Mon Sep 17 00:00:00 2001 From: Elena Martynova Date: Sun, 14 Sep 2025 15:32:58 +0300 Subject: [PATCH] fix(DefaultVideo): fix loop prop --- src/components/DefaultVideo/DefaultVideo.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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