diff --git a/react/components/LazyImages.tsx b/react/components/LazyImages.tsx index 10f40fef..13466859 100644 --- a/react/components/LazyImages.tsx +++ b/react/components/LazyImages.tsx @@ -51,7 +51,9 @@ const MaybeLazyImage: FC = ({ }) => { const { lazyLoad, method } = useLazyImagesContext() - if (lazyLoad) { + const isEager = imageProps.loading === 'eager' + + if (lazyLoad && !isEager) { let newImageProps = imageProps switch (method) {