coderabbit fixes

This commit is contained in:
2025-11-24 10:28:20 -05:00
parent 321aa058ed
commit 2a9cfd7f1f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ const { tags } = Astro.props;
{
tags.sort().map((tag: string, index: number) => (
<>
<a class="tag" href={`/blog/tag/${tag}`}>
<a class="tag" href={`/blog/tag/${encodeURIComponent(tag)}`}>
{tag}
</a>
{index < tags.length - 1 ? ' | ' : ''}