diff --git a/src/components/Media/Image/Image.tsx b/src/components/Media/Image/Image.tsx index de309d5f3..830d6c2e0 100644 --- a/src/components/Media/Image/Image.tsx +++ b/src/components/Media/Image/Image.tsx @@ -73,8 +73,8 @@ const Image = (props: ImageAllProps) => { if (parallax) { const parallaxLevel = 2; - springSetScrollY({springScrollY: height && scrollY > height ? height : scrollY}); - parallaxInterpolate = springScrollY.interpolate( + springSetScrollY.start({springScrollY: height && scrollY > height ? height : scrollY}); + parallaxInterpolate = springScrollY.to( (value) => `translateY(-${Number(value) / parallaxLevel}px)`, ); }