Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Remove show_avi_follow_button (#4900)

authored by

Eric Bailey and committed by
GitHub
a0756c53 3ea8eb60

+1 -4
-1
src/lib/statsig/gates.ts
··· 4 4 | 'new_user_guided_tour' 5 5 | 'onboarding_minimum_interests' 6 6 | 'session_withproxy_fix' 7 - | 'show_avi_follow_button' 8 7 | 'show_follow_back_label_v2' 9 8 | 'suggested_feeds_interstitial' 10 9 | 'video_debug'
+1 -3
src/view/com/posts/AviFollowButton.tsx
··· 7 7 8 8 import {createHitslop} from '#/lib/constants' 9 9 import {NavigationProp} from '#/lib/routes/types' 10 - import {useGate} from '#/lib/statsig/statsig' 11 10 import {sanitizeDisplayName} from '#/lib/strings/display-names' 12 11 import {useProfileShadow} from '#/state/cache/profile-shadow' 13 12 import {useSession} from '#/state/session' ··· 37 36 profile: profile, 38 37 logContext: 'AvatarButton', 39 38 }) 40 - const gate = useGate() 41 39 const {currentAccount, hasSession} = useSession() 42 40 const navigation = useNavigation<NavigationProp>() 43 41 ··· 80 78 }, 81 79 ] 82 80 83 - return hasSession && gate('show_avi_follow_button') ? ( 81 + return hasSession ? ( 84 82 <View style={a.relative}> 85 83 {children} 86 84