mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 16:05:47 +01:00
🏗️ Fix small bug in code arch, forgot the key
This commit is contained in:
@@ -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>
|
||||||
))}
|
))}
|
||||||
|
|||||||
Reference in New Issue
Block a user