Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

prevent android exposures to gate (#8916)

authored by

Samuel Newman and committed by
GitHub
8a22584a 17cbf757

+2 -1
+2 -1
src/screens/Profile/Header/SuggestedFollows.tsx
··· 28 28 actorDid: string 29 29 }) { 30 30 const gate = useGate() 31 - if (!gate('post_follow_profile_suggested_accounts')) return null 32 31 33 32 /* NOTE (caidanw): 34 33 * Android does not work well with this feature yet. ··· 36 35 * Blocking the ability to scroll on Android is too much of a trade-off for now. 37 36 **/ 38 37 if (isAndroid) return null 38 + 39 + if (!gate('post_follow_profile_suggested_accounts')) return null 39 40 40 41 return ( 41 42 <AccordionAnimation isExpanded={isExpanded}>