Bluesky app fork with some witchin' additions 💫

ship post follow follow suggestions (#9251)

authored by samuel.fm and committed by

GitHub 6ccedd5e feab782b

-5
-1
src/lib/statsig/gates.ts
··· 8 8 | 'old_postonboarding' 9 9 | 'onboarding_add_video_feed' 10 10 | 'onboarding_suggested_starterpacks' 11 - | 'post_follow_profile_suggested_accounts' 12 11 | 'remove_show_latest_button' 13 12 | 'test_gate_1' 14 13 | 'test_gate_2'
-4
src/screens/Profile/Header/SuggestedFollows.tsx
··· 1 1 import {AccordionAnimation} from '#/lib/custom-animations/AccordionAnimation' 2 - import {useGate} from '#/lib/statsig/statsig' 3 2 import {isAndroid} from '#/platform/detection' 4 3 import {useSuggestedFollowsByActorQuery} from '#/state/queries/suggested-follows' 5 4 import {ProfileGrid} from '#/components/FeedInterstitials' ··· 27 26 isExpanded: boolean 28 27 actorDid: string 29 28 }) { 30 - const gate = useGate() 31 29 const {isLoading, data, error} = useSuggestedFollowsByActorQuery({ 32 30 did: actorDid, 33 31 }) ··· 40 38 * Blocking the ability to scroll on Android is too much of a trade-off for now. 41 39 **/ 42 40 if (isAndroid) return null 43 - 44 - if (!gate('post_follow_profile_suggested_accounts')) return null 45 41 46 42 return ( 47 43 <AccordionAnimation isExpanded={isExpanded}>