From 6ccedd5e31560c2687c6a34cbe0c2e30e8c8e244 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 3 Nov 2025 19:18:49 +0200 Subject: [PATCH] ship post follow follow suggestions (#9251) --- src/lib/statsig/gates.ts | 1 - src/screens/Profile/Header/SuggestedFollows.tsx | 4 ---- 2 files changed, 5 deletions(-) diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index 2bb94b8897..aa839542f2 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -8,7 +8,6 @@ export type Gate = | 'old_postonboarding' | 'onboarding_add_video_feed' | 'onboarding_suggested_starterpacks' - | 'post_follow_profile_suggested_accounts' | 'remove_show_latest_button' | 'test_gate_1' | 'test_gate_2' diff --git a/src/screens/Profile/Header/SuggestedFollows.tsx b/src/screens/Profile/Header/SuggestedFollows.tsx index a3e1fbd5d7..3a9eb170a6 100644 --- a/src/screens/Profile/Header/SuggestedFollows.tsx +++ b/src/screens/Profile/Header/SuggestedFollows.tsx @@ -1,5 +1,4 @@ import {AccordionAnimation} from '#/lib/custom-animations/AccordionAnimation' -import {useGate} from '#/lib/statsig/statsig' import {isAndroid} from '#/platform/detection' import {useSuggestedFollowsByActorQuery} from '#/state/queries/suggested-follows' import {ProfileGrid} from '#/components/FeedInterstitials' @@ -27,7 +26,6 @@ export function AnimatedProfileHeaderSuggestedFollows({ isExpanded: boolean actorDid: string }) { - const gate = useGate() const {isLoading, data, error} = useSuggestedFollowsByActorQuery({ did: actorDid, }) @@ -41,8 +39,6 @@ export function AnimatedProfileHeaderSuggestedFollows({ **/ if (isAndroid) return null - if (!gate('post_follow_profile_suggested_accounts')) return null - return (