about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-01-30 17:09:21 -0600
committerGitHub <noreply@github.com>2024-01-30 15:09:21 -0800
commit2ce9ab7da0bf59b0380c9ed995c1d554185131ea (patch)
tree09762c0285cccea4a4cf07569182b97f26a4c036 /src
parentbb7ce215f7d141ddefe6f259439d1169db46d594 (diff)
downloadvoidsky-2ce9ab7da0bf59b0380c9ed995c1d554185131ea.tar.zst
Don't interpolate rkey (#2691)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/notifications/FeedItem.tsx4
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,