From bebf3dd0681a5a8c8a81f7e501f06a0738b763af Mon Sep 17 00:00:00 2001 From: hexa <67880600+hexa0@users.noreply.github.com> Date: Fri, 2 May 2025 21:28:53 -0400 Subject: [PATCH] ImageZoom: Fix for animated WebP images (#3407) --- src/plugins/imageZoom/components/Magnifier.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/imageZoom/components/Magnifier.tsx b/src/plugins/imageZoom/components/Magnifier.tsx index 009165ff..2acd0259 100644 --- a/src/plugins/imageZoom/components/Magnifier.tsx +++ b/src/plugins/imageZoom/components/Magnifier.tsx @@ -203,7 +203,7 @@ export const Magnifier = ErrorBoundary.wrap(({ instance, size: i }} width={`${box.width * zoom.current}px`} height={`${box.height * zoom.current}px`} - src={instance.props.src} + src={instance.props.src + "?animated=true"} alt="" /> )}