From 16b4c1a7f34d43bf1578c3ce173356ab2554eafd Mon Sep 17 00:00:00 2001 From: Esteban Date: Wed, 22 Apr 2026 01:33:58 -0500 Subject: [PATCH] eliminated tags inside a new --- src/pages/[locale]/news/[id].astro | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/pages/[locale]/news/[id].astro b/src/pages/[locale]/news/[id].astro index c723b7b..363856c 100644 --- a/src/pages/[locale]/news/[id].astro +++ b/src/pages/[locale]/news/[id].astro @@ -61,18 +61,6 @@ const excerpt = words.join(' ') + (words.length === 35 ? '...' : ''); {post.data.gallery?.length ? ( ) : post.data.thumbnail ? ({post.data.title} ) : null} - {post.data.tags && post.data.tags.length > 0 && ( -
-
- {post.data.tags.map((tag: string) => ( - - {tag} - - ))} -
-
- )} -