personal web client for Bluesky
typescript solidjs bluesky atcute

fix: link hashtags to search page

mary.my.id e382e3f2 c78798dd

verified
Changed files
+2 -1
src
components
+2 -1
src/components/rich-text.tsx
··· 64 64 65 65 break; 66 66 } else if (type === 'app.bsky.richtext.facet#tag') { 67 - node = renderInternalLink(`/topics/${feature.tag}`, subtext); 67 + const href = `/search?q=${encodeURIComponent('#' + feature.tag)}&t=top_posts`; 68 + node = renderInternalLink(href, subtext); 68 69 69 70 break; 70 71 } else if (type === 'blue.moji.richtext.facet') {