We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dccce9f + 8547279 commit 06660edCopy full SHA for 06660ed
src/components/pages/PageProducts/components/Products.tsx
@@ -43,12 +43,12 @@ export default function Products() {
43
44
return (
45
<Grid container spacing={4}>
46
- {products.map((product: Product) => (
+ {products.map((product: Product, index: number) => (
47
<Grid item key={product.id} xs={12} sm={6} md={4}>
48
<Card className={classes.card}>
49
<CardMedia
50
className={classes.cardMedia}
51
- image="https://source.unsplash.com/random"
+ image={`https://source.unsplash.com/random?sig=${index}`}
52
title="Image title"
53
/>
54
<CardContent className={classes.cardContent}>
0 commit comments