diff --git a/src/components/ui/Skeleton.tsx b/src/components/ui/Skeleton.tsx index acb79ba7..a13ab98c 100644 --- a/src/components/ui/Skeleton.tsx +++ b/src/components/ui/Skeleton.tsx @@ -50,9 +50,9 @@ function Container({
{Array.from(new Array(count)).map((_, index) => ( - {childrenArray.map((child) => + {childrenArray.map((child, i) => React.cloneElement(child as React.ReactElement, { - key: index, + key: `child-${index}-${i}`, }), )}