We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1811800 commit 9b1a72dCopy full SHA for 9b1a72d
frontend/src/components/skeletons/Card.tsx
@@ -59,10 +59,7 @@ const CardSkeleton: React.FC<CardSkeletonProps> = ({
59
<div className="mt-3 flex w-full flex-wrap items-center gap-2">
60
{/* # NOSONAR As safe to use index as key - static skeleton items with fixed length */}
61
{[...Array(NUM_CONTRIBUTORS)].map((_, i) => (
62
- <Skeleton
63
- key={i}
64
- className="border-background h-8 w-8 rounded-full border-2"
65
- />
+ <Skeleton key={i} className="border-background h-8 w-8 rounded-full border-2" />
66
))}
67
</div>
68
)}
0 commit comments