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 = (
|
const body = (
|
||||||
<div className={clsx('', !noLink && 'cursor-pointer')}>
|
<div className={clsx('', !noLink && 'cursor-pointer')}>
|
||||||
<span className="text-sm">#{category ?? tag} </span>
|
<span className="text-sm">{category ? '#' + category : tag} </span>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user