diff options
author | Eric Bailey <git@esb.lol> | 2024-01-30 17:09:21 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-30 15:09:21 -0800 |
commit | 2ce9ab7da0bf59b0380c9ed995c1d554185131ea (patch) | |
tree | 09762c0285cccea4a4cf07569182b97f26a4c036 | |
parent | bb7ce215f7d141ddefe6f259439d1169db46d594 (diff) | |
download | voidsky-2ce9ab7da0bf59b0380c9ed995c1d554185131ea.tar.zst |
Don't interpolate rkey (#2691)
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index 0dfac2a83..f037097df 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -167,9 +167,7 @@ let FeedItem = ({ icon = 'user-plus' iconStyle = [s.blue3 as FontAwesomeIconStyle] } else if (item.type === 'feedgen-like') { - action = item.subjectUri - ? _(msg`liked your custom feed '${new AtUri(item.subjectUri).rkey}'`) - : _(msg`liked your custom feed`) + action = _(msg`liked your custom feed`) icon = 'HeartIconSolid' iconStyle = [ s.likeColor as FontAwesomeIconStyle, |