From 596fd20f5020a4021713a6950f64ea607aa9526a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 2 Sep 2026 03:46:19 +0000 Subject: [PATCH 1/2] Initial plan From 862039acd577d7838cec6a19557ba394d68cc35d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 2 Sep 2026 03:49:10 +0000 Subject: [PATCH 2/2] fix: remove redundant viewport check in image video effect Co-authored-by: zrlopez <228583414+zrlopez@users.noreply.github.com> --- app/components/image/image.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/image/image.jsx b/app/components/image/image.jsx index 01ba717..06e1589 100644 --- a/app/components/image/image.jsx +++ b/app/components/image/image.jsx @@ -122,7 +122,7 @@ const ImageElements = ({ if (!inViewport) { pauseVideo(); - } else if (inViewport && !reduceMotion && play) { + } else if (!reduceMotion && play) { playVideo(); } }, [inViewport, play, reduceMotion, restartOnPause, videoInteracted, videoSrc]);