Skip to content

Commit

Permalink
[lifeparticle#395] Fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
panagiotisbellias authored and Panagiotis Bellias committed Apr 18, 2024
1 parent 67133af commit 886aa18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/Layouts/InputGrid/InputGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const InputGrid: FC<InputGridProps> = ({ children, className }) => {
return (
<Row gutter={[16, 0]} className={className}>
{childElements.map((child, index) => (
<Col key={child.id} xs={24} sm={24} md={24} lg={12}>
<Col key={index} xs={24} sm={24} md={24} lg={12}>
{child}
</Col>
))}
Expand Down

0 comments on commit 886aa18

Please sign in to comment.