From 02c79aa98c25644f568f4ff4630c1375a0ad65ec Mon Sep 17 00:00:00 2001 From: highperfocused Date: Mon, 20 Oct 2025 15:23:07 +0200 Subject: [PATCH] feat: make hashtags clickable links for improved navigation --- src/components/ArticleView.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/components/ArticleView.tsx b/src/components/ArticleView.tsx index eb89583..3c1ccba 100644 --- a/src/components/ArticleView.tsx +++ b/src/components/ArticleView.tsx @@ -174,9 +174,13 @@ export function ArticleView({ post }: ArticleViewProps) { {hashtags.length > 0 && (
{hashtags.map((tag) => ( - - #{tag} - + + #{tag} + ))}
)}