From 292117804f986686c35c9fd3da1a8a4f22af49fc Mon Sep 17 00:00:00 2001 From: dan Date: Sat, 7 Sep 2024 17:08:19 +0200 Subject: Set show_follow_suggestions_in_profile to true (#5205) --- src/components/FeedInterstitials.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/components/FeedInterstitials.tsx') diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 65e981f77..5031f584e 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -8,7 +8,6 @@ import {useNavigation} from '@react-navigation/native' import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import {NavigationProp} from '#/lib/routes/types' -import {useGate} from '#/lib/statsig/statsig' import {logEvent} from '#/lib/statsig/statsig' import {logger} from '#/logger' import {useModerationOpts} from '#/state/preferences/moderation-opts' @@ -177,14 +176,9 @@ function useExperimentalSuggestedUsersQuery() { } export function SuggestedFollows({feed}: {feed: FeedDescriptor}) { - const gate = useGate() const [feedType, feedUri] = feed.split('|') if (feedType === 'author') { - if (gate('show_follow_suggestions_in_profile')) { - return - } else { - return null - } + return } else { return } -- cgit 1.4.1