Skip to content

Commit

Permalink
fix: missing index in complete block links template
Browse files Browse the repository at this point in the history
  • Loading branch information
pnicolli committed Dec 18, 2023
1 parent 9bec274 commit bdd18cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const CompleteBlockLinksTemplate = (props) => {
</Row>
)}
<Row className="items">
{items.map((item) => {
{items.map((item, index) => {
const image = ListingImage({ item, className: '', sizes: '60px' });

const BlockExtraTags = getComponentWithFallback({
Expand Down

0 comments on commit bdd18cb

Please sign in to comment.