Skip to content

Commit

Permalink
refactor: apply lint autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber authored and github-actions[bot] committed Apr 9, 2024
1 parent 47c7ecf commit 07a2d98
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions website/src/pages/showcase/_components/ShowcaseCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ function TagItem({
description: string;
color: string;
}) {
return <li className={styles.tag} title={description}>
<span className={styles.textLabel}>{label.toLowerCase()}</span>
<span className={styles.colorLabel} style={{backgroundColor: color}} />
</li>
return (
<li className={styles.tag} title={description}>
<span className={styles.textLabel}>{label.toLowerCase()}</span>
<span className={styles.colorLabel} style={{backgroundColor: color}} />
</li>
);
}

function ShowcaseCardTag({tags}: {tags: TagType[]}) {
Expand Down

0 comments on commit 07a2d98

Please sign in to comment.