🏗️ Fix small bug in code arch, forgot the key

This commit is contained in:
ajnart
2022-05-17 02:03:52 +02:00
parent d4ce2a3ed6
commit 16b86870c4

View File

@@ -30,7 +30,7 @@ const AppShelf = (props: any) => {
return ( return (
<Grid gutter="xl" align="center"> <Grid gutter="xl" align="center">
{config.services.map((service) => ( {config.services.map((service) => (
<Grid.Col span={6} xl={2} xs={4} sm={3} md={3}> <Grid.Col key={service.name} span={6} xl={2} xs={4} sm={3} md={3}>
<AppShelfItem key={service.name} service={service} /> <AppShelfItem key={service.name} service={service} />
</Grid.Col> </Grid.Col>
))} ))}