Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into feature/410-cover-block
Browse files Browse the repository at this point in the history
  • Loading branch information
ravewebdev committed Jun 15, 2021
2 parents a64aaac + 0dc1e20 commit 7f69d9b
Show file tree
Hide file tree
Showing 3 changed files with 1,237 additions and 1,186 deletions.
16 changes: 8 additions & 8 deletions components/molecules/ImageGallery/ImageGallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ export default function ImageGallery({
<div className={cn(styles.wrap, styles[`columns-${columns}`])}>
{images.map((image, index) => {
return (
<DisplayImage
className={styles.imageWrap}
key={index}
alt={image.alt}
id={image.id}
imageMeta={{mediaItemUrl: image.url, altText: image.alt}}
nextImageFill={true}
/>
<div key={index} className={styles.imageWrap}>
<DisplayImage
alt={image.alt}
id={image.id}
url={image.url}
nextImageFill={true}
/>
</div>
)
})}
</div>
Expand Down
Loading

0 comments on commit 7f69d9b

Please sign in to comment.