fix double hashtag
This commit is contained in:
parent
2858fd090c
commit
5310da05e2
|
@ -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>
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user