File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ export type Gate =
3
3
| 'debug_show_feedcontext'
4
4
| 'fixed_bottom_bar'
5
5
| 'onboarding_minimum_interests'
6
- | 'show_follow_back_label_v2'
7
6
| 'suggested_feeds_interstitial'
8
7
| 'video_debug'
9
8
| 'videos'
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import {msg, Trans} from '@lingui/macro'
6
6
import { useLingui } from '@lingui/react'
7
7
import { useNavigation } from '@react-navigation/native'
8
8
9
- import { useGate } from '#/lib/statsig/statsig'
10
9
import { logger } from '#/logger'
11
10
import { track } from 'lib/analytics/analytics'
12
11
import { usePalette } from 'lib/hooks/usePalette'
@@ -48,7 +47,6 @@ function PostThreadFollowBtnLoaded({
48
47
'PostThreadItem' ,
49
48
)
50
49
const requireAuth = useRequireAuth ( )
51
- const gate = useGate ( )
52
50
53
51
const isFollowing = ! ! profile . viewer ?. following
54
52
const isFollowedBy = ! ! profile . viewer ?. followedBy
@@ -140,7 +138,7 @@ function PostThreadFollowBtnLoaded({
140
138
style = { [ ! isFollowing ? palInverted . text : pal . text , s . bold ] }
141
139
numberOfLines = { 1 } >
142
140
{ ! isFollowing ? (
143
- isFollowedBy && gate ( 'show_follow_back_label_v2' ) ? (
141
+ isFollowedBy ? (
144
142
< Trans > Follow Back</ Trans >
145
143
) : (
146
144
< Trans > Follow</ Trans >
You can’t perform that action at this time.
0 commit comments