Skip to content

Commit

Permalink
uuid generator deleted due to failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
“RomanButsko” authored and “RomanButsko” committed Dec 11, 2023
1 parent 8ab603d commit 417d47c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/Layouts/PageGrid/PageGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const PageGrid: FC<PageGridProps> = ({ children, className }) => {

return (
<Row gutter={[16, 16]} className={className}>
{childElements.map((child) => (
<Col key={crypto.randomUUID()} xs={24} sm={24} md={24} lg={12}>
{childElements.map((child, index) => (
<Col key={index} xs={24} sm={24} md={24} lg={12}>
{child}
</Col>
))}
Expand Down

0 comments on commit 417d47c

Please sign in to comment.