Skip to content

Commit

Permalink
fix: remove a tag from tags
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanBalota committed Jan 23, 2024
1 parent ccc11b8 commit 94a4731
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/components/Post.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,9 @@ const { post } = Astro.props;
</time>
{
post.data.tags.map((tag) => (
<a
href="#"
class="relative z-10 rounded-full bg-gray-50 px-2 py-1.5 font-medium text-gray-600 hover:bg-gray-100"
>
<span class="relative z-10 rounded-full bg-gray-50 px-2 py-1.5 font-medium text-gray-600 hover:bg-gray-100">
{tag}
</a>
</span>
))
}
</div>
Expand Down

0 comments on commit 94a4731

Please sign in to comment.