diff options
Diffstat (limited to 'src/state/queries/post-feed.ts')
-rw-r--r-- | src/state/queries/post-feed.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index b9e0628f7..b763f28a0 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -152,7 +152,13 @@ export function usePostFeedQuery( feedTuners, userInterests, // Not in the query key because they don't change. getAgent, - useBaseFollowingFeed: gate('reduced_onboarding_and_home_algo'), + useBaseFollowingFeed: gate( + 'reduced_onboarding_and_home_algo_v2', + { + // If you're not already in this experiment, we don't want to expose you to it now. + dangerouslyDisableExposureLogging: true, + }, + ), }), cursor: undefined, } |