Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Enable show_follow_back_label_v2 (#5022)

authored by

dan and committed by
GitHub
e51eb391 9ebc2785

+1 -4
-1
src/lib/statsig/gates.ts
··· 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'
+1 -3
src/view/com/post-thread/PostThreadFollowBtn.tsx
··· 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 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 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>