Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vo7kov committed Aug 24, 2023
1 parent b2d0f6d commit 216511d
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/pages/LookBookPage/LookBookPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,15 @@ export const LookBookPage: React.FC = React.memo(() => {
const { link } = photo;

return (
<img
className="lookBook__section-list-item-image"
src={link}
alt={makeAlt(link)}
/>
<React.Fragment
key={index}
>
<img
className="lookBook__section-list-item-image"
src={link}
alt={makeAlt(link)}
/>
</React.Fragment>
);
}}
/>
Expand Down

0 comments on commit 216511d

Please sign in to comment.