diff --git a/web/components/tags-list.tsx b/web/components/tags-list.tsx index 5eec05ce..073d3947 100644 --- a/web/components/tags-list.tsx +++ b/web/components/tags-list.tsx @@ -11,7 +11,7 @@ function Hashtag(props: { tag: string; noLink?: boolean }) { const body = (
- #{category ?? tag} + {category ? '#' + category : tag}
)