diff options
author | Eric Bailey <git@esb.lol> | 2024-07-25 13:16:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 13:16:21 -0500 |
commit | fac1af43b0300e9d9be16641afc4fbeef0a91ccf (patch) | |
tree | 3f98cac818b24c061953b81df84590620e620733 | |
parent | a03622dd5527b8322a668e4ce5c89ff2436599de (diff) | |
download | voidsky-fac1af43b0300e9d9be16641afc4fbeef0a91ccf.tar.zst |
Fuggedaboudit (#4829)
-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 d31962ff3..3171f88db 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -171,7 +171,6 @@ let FeedItem = ({ ) } - let isFollowBack = false let action = '' let icon = ( <HeartIconFilled @@ -192,7 +191,6 @@ let FeedItem = ({ item.notification.author.viewer?.following && gate('ungroup_follow_backs') ) { - isFollowBack = true action = _(msg`followed you back`) } else { action = _(msg`followed you`) @@ -272,7 +270,7 @@ let FeedItem = ({ visible={!isAuthorsExpanded} authors={authors} onToggleAuthorsExpanded={onToggleAuthorsExpanded} - showDmButton={item.type === 'starterpack-joined' || isFollowBack} + showDmButton={item.type === 'starterpack-joined'} /> <ExpandedAuthorsList visible={isAuthorsExpanded} authors={authors} /> <Text style={[styles.meta, a.self_start]}> |