···11import {AccordionAnimation} from '#/lib/custom-animations/AccordionAnimation'
22-import {useGate} from '#/lib/statsig/statsig'
32import {isAndroid} from '#/platform/detection'
43import {useSuggestedFollowsByActorQuery} from '#/state/queries/suggested-follows'
54import {ProfileGrid} from '#/components/FeedInterstitials'
···2726 isExpanded: boolean
2827 actorDid: string
2928}) {
3030- const gate = useGate()
3129 const {isLoading, data, error} = useSuggestedFollowsByActorQuery({
3230 did: actorDid,
3331 })
···4038 * Blocking the ability to scroll on Android is too much of a trade-off for now.
4139 **/
4240 if (isAndroid) return null
4343-4444- if (!gate('post_follow_profile_suggested_accounts')) return null
45414642 return (
4743 <AccordionAnimation isExpanded={isExpanded}>