fix: remove duplicate hashtag prefix from tag rendering

This commit is contained in:
saberzero1 2026-02-24 02:15:53 +01:00
parent a67025816e
commit 024b1220cd
No known key found for this signature in database

View file

@ -156,7 +156,7 @@ function renderTagList(tags: string[], ctx: RenderCtx): preact.JSX.Element {
<>
{idx > 0 && <span class="note-properties-separator">, </span>}
<a href={href} class="internal tag-link">
#{tag}
{tag}
</a>
</>
);