From 854466896328f1963e4da96e8ab5770445a7c3f4 Mon Sep 17 00:00:00 2001 From: prototypa Date: Tue, 10 Dec 2024 19:39:48 -0500 Subject: [PATCH] Fix astro check errors --- src/components/blog/Tags.astro | 12 +++++------- src/utils/frontmatter.ts | 6 ++++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/blog/Tags.astro b/src/components/blog/Tags.astro index 30b09e25be..ae46a245e8 100644 --- a/src/components/blog/Tags.astro +++ b/src/components/blog/Tags.astro @@ -17,13 +17,11 @@ const { tags, class: className = 'text-sm', title = undefined, isCategory = fals { tags && Array.isArray(tags) && ( <> - <> - {title !== undefined && ( - - {title} - - )} - + {title !== undefined && ( + + {title} + + )}