Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfkid200444 committed May 15, 2023
1 parent fdc5820 commit 139b290
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ interface CustomBadges {
{
tooltip: string;
image: string;
}
},
];
};
}
Expand Down Expand Up @@ -251,10 +251,9 @@ function getBadgeselements(badges: CustomBadges, Badge: any, id: string) {
{ condition: badges.vencord?.contributor, element: <Badge.vencordContributor /> },
{
condition: badges.vencord?.cutie,
element:
badges.vencord?.cutie?.map((cutie) => (
<Badge.vencordCutie name={cutie.tooltip} url={cutie.image} />
)),
element: badges.vencord?.cutie?.map((cutie) => (
<Badge.vencordCutie name={cutie.tooltip} url={cutie.image} />
)),
},
];

Expand Down

0 comments on commit 139b290

Please sign in to comment.