diff --git a/src/components/blog/Tags.astro b/src/components/blog/Tags.astro index a91105f..b00b108 100644 --- a/src/components/blog/Tags.astro +++ b/src/components/blog/Tags.astro @@ -8,9 +8,10 @@ export interface Props { tags: Post['tags']; class?: string; title?: string | undefined; + isCategory?: boolean; } -const { tags, class: className = 'text-sm', title = undefined } = Astro.props; +const { tags, class: className = 'text-sm', title = undefined, isCategory = false } = Astro.props; --- { @@ -26,7 +27,7 @@ const { tags, class: className = 'text-sm', title = undefined } = Astro.props; tag ) : ( {tag}