diff --git a/src/components/image/index.ts b/src/components/image/index.ts index 3dbb01b9..eb7d6582 100644 --- a/src/components/image/index.ts +++ b/src/components/image/index.ts @@ -12,6 +12,6 @@ export interface ImageProps { imgClassName?: string src: string alt: string - blurDataUrl?: string + blurDataURL?: string priority?: boolean } diff --git a/src/photo/PhotoLarge.tsx b/src/photo/PhotoLarge.tsx index 4c73b81e..92862170 100644 --- a/src/photo/PhotoLarge.tsx +++ b/src/photo/PhotoLarge.tsx @@ -96,7 +96,7 @@ export default function PhotoLarge({ alt={altTextForPhoto(photo)} src={photo.url} aspectRatio={photo.aspectRatio} - blurDataUrl={photo.blurData} + blurDataURL={photo.blurData} blurCompatibilityMode={doesPhotoNeedBlurCompatibility(photo)} priority={priority} /> diff --git a/src/photo/PhotoMedium.tsx b/src/photo/PhotoMedium.tsx index 44956c1e..ec666919 100644 --- a/src/photo/PhotoMedium.tsx +++ b/src/photo/PhotoMedium.tsx @@ -50,7 +50,7 @@ export default function PhotoMedium({