Skip to content

Commit

Permalink
Applied prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
koss-service committed Nov 18, 2023
1 parent e0ca4e7 commit afab2da
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/components/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,16 @@ function ProjectCard({
{name}
</h3>
<div className="flex flex-wrap gap-2.5">
{tags.filter((tag) => tag.length > 0).map((tag) => (
<button
onClick={() => setQuery(tag)}
className="hover:underline rounded-md px-2.5 py-0.5 bg-primary-800 text-sm"
>
{tag}
</button>
))}
{tags
.filter((tag) => tag.length > 0)
.map((tag) => (
<button
onClick={() => setQuery(tag)}
className="hover:underline rounded-md px-2.5 py-0.5 bg-primary-800 text-sm"
>
{tag}
</button>
))}
</div>
</div>

Expand Down

0 comments on commit afab2da

Please sign in to comment.