diff --git a/src/photo/PhotosLarge.tsx b/src/photo/PhotosLarge.tsx index 02ea3b6f..adf9c948 100644 --- a/src/photo/PhotosLarge.tsx +++ b/src/photo/PhotosLarge.tsx @@ -9,12 +9,14 @@ export default function PhotosLarge({ prefetchFirstPhotoLinks, onLastPhotoVisible, revalidatePhoto, + debugImageFallback = true, }: { photos: Photo[] animate?: boolean prefetchFirstPhotoLinks?: boolean onLastPhotoVisible?: () => void revalidatePhoto?: RevalidatePhoto + debugImageFallback?: boolean }) { return ( )} itemKeys={photos.map(photo => photo.id)} /> diff --git a/src/photo/PhotosLargeInfinite.tsx b/src/photo/PhotosLargeInfinite.tsx index 40631291..22757bc0 100644 --- a/src/photo/PhotosLargeInfinite.tsx +++ b/src/photo/PhotosLargeInfinite.tsx @@ -23,6 +23,7 @@ export default function PhotosLargeInfinite({ photos={photos} onLastPhotoVisible={onLastPhotoVisible} revalidatePhoto={revalidatePhoto} + debugImageFallback={false} />} );