about summary refs log tree commit diff
path: root/src/components/FeedInterstitials.tsx
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2024-09-07 17:08:19 +0200
committerGitHub <noreply@github.com>2024-09-07 17:08:19 +0200
commit292117804f986686c35c9fd3da1a8a4f22af49fc (patch)
treeede8c51b4d125b399b93888b59e33c78b6e1c88b /src/components/FeedInterstitials.tsx
parent7d7431d14e52d94cce51941013c8a5fe5665adb1 (diff)
downloadvoidsky-292117804f986686c35c9fd3da1a8a4f22af49fc.tar.zst
Set show_follow_suggestions_in_profile to true (#5205)
Diffstat (limited to 'src/components/FeedInterstitials.tsx')
-rw-r--r--src/components/FeedInterstitials.tsx8
1 files changed, 1 insertions, 7 deletions
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 <SuggestedFollowsProfile did={feedUri} />
-    } else {
-      return null
-    }
+    return <SuggestedFollowsProfile did={feedUri} />
   } else {
     return <SuggestedFollowsHome />
   }