diff --git a/src/status_im2/contexts/shell/activity_center/notification/mentions/view.cljs b/src/status_im2/contexts/shell/activity_center/notification/mentions/view.cljs index 51ef385c75..f2c6322553 100644 --- a/src/status_im2/contexts/shell/activity_center/notification/mentions/view.cljs +++ b/src/status_im2/contexts/shell/activity_center/notification/mentions/view.cljs @@ -17,13 +17,14 @@ :style style/tag-text :accessibility-label :activity-message-body :size :paragraph-1}] - (map-indexed (fn [index {:keys [type literal]}] + (map-indexed (fn [index {:keys [type literal destination]}] ^{:key index} (case type "mention" [quo/text {:style style/mention-text :size :paragraph-1} (str "@" (rf/sub [:messages/resolve-mention literal]))] + "link" destination literal)) parsed-text-children))))