From 560d72ae568463de529b7f9dc10258cc4edc8595 Mon Sep 17 00:00:00 2001 From: Razvan Date: Tue, 23 Jan 2024 17:43:20 +0200 Subject: [PATCH] fix: remove a tag from tags --- src/components/Post.astro | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/components/Post.astro b/src/components/Post.astro index 24a2041..38d6e8e 100644 --- a/src/components/Post.astro +++ b/src/components/Post.astro @@ -31,12 +31,9 @@ const { post } = Astro.props; { post.data.tags.map((tag) => ( - + {tag} - + )) }