🐛 Fix missing key id
This commit is contained in:
parent
79e7709cc1
commit
35222ab4e4
@ -54,7 +54,7 @@ export default function ProductDetails({ product, releases }: InferGetServerSide
|
|||||||
|
|
||||||
<Grid container columns={{ xs: 1, sm: 2, md: 3 }} spacing={2}>
|
<Grid container columns={{ xs: 1, sm: 2, md: 3 }} spacing={2}>
|
||||||
{releases.map((r: any) => (
|
{releases.map((r: any) => (
|
||||||
<Grid size={1}>
|
<Grid size={1} key={r.id}>
|
||||||
<Card>
|
<Card>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Typography variant="caption">{r.version}</Typography>
|
<Typography variant="caption">{r.version}</Typography>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user