From 5d89cc9fea075f3d51cdb8593e0b9ce7cc6aef8c Mon Sep 17 00:00:00 2001 From: Gabriel Date: Wed, 5 Nov 2025 15:37:40 +0000 Subject: [PATCH] Corrected the issue with the hashtag link --- front-end/components/bloom.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front-end/components/bloom.mjs b/front-end/components/bloom.mjs index 0b4166c..bcee933 100644 --- a/front-end/components/bloom.mjs +++ b/front-end/components/bloom.mjs @@ -37,7 +37,7 @@ const createBloom = (template, bloom) => { function _formatHashtags(text) { if (!text) return text; return text.replace( - /\B#[^#]+/g, + /\B#[^#\s]+/g, (match) => `${match}` ); }