fix double hashtag

This commit is contained in:
mantikoros 2022-05-17 11:49:10 -04:00
parent 2858fd090c
commit 5310da05e2

View File

@ -11,7 +11,7 @@ function Hashtag(props: { tag: string; noLink?: boolean }) {
const body = (
<div className={clsx('', !noLink && 'cursor-pointer')}>
<span className="text-sm">#{category ?? tag} </span>
<span className="text-sm">{category ? '#' + category : tag} </span>
</div>
)