Skip to content

Commit

Permalink
removed unused skeleton variable
Browse files Browse the repository at this point in the history
  • Loading branch information
recondesigns committed Mar 3, 2024
1 parent 0794331 commit 27a9be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Cards/ResourceCard/ResourceSkeletonCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export type ResourceSkeletonCardPropsType = {
function ResourceSkeletonCard({ numberOfSkeletons }: ResourceSkeletonCardPropsType) {
return (
<div className={styles.resourcesCardWrapper}>
{[...Array(numberOfSkeletons)].map((skeleton, index) => (
{[...Array(numberOfSkeletons)].map((index) => (
// eslint-disable-next-line react/no-array-index-key
<div data-testid={SKELETON_CARD} key={index} className={styles.Skeleton}>
<div className={styles.loading}>
Expand Down

0 comments on commit 27a9be0

Please sign in to comment.