diff options
author | Eric Bailey <git@esb.lol> | 2024-07-03 22:13:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-04 04:13:47 +0100 |
commit | 4f02da96c8c2483923fdf52d1ee7cd8f34b15fba (patch) | |
tree | 981775d5260a813079b5c2d1564380069440b193 /src/state/queries/notifications/feed.ts | |
parent | 0ed99b840d8de13465f010a6434dea50c72b3f62 (diff) | |
download | voidsky-4f02da96c8c2483923fdf52d1ee7cd8f34b15fba.tar.zst |
[D1X] Pull out follow-backs for higher signal (#4719)
* Pull out follow-backs for higher signal * Gate it * Fix early gate check --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Diffstat (limited to 'src/state/queries/notifications/feed.ts')
-rw-r--r-- | src/state/queries/notifications/feed.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/state/queries/notifications/feed.ts b/src/state/queries/notifications/feed.ts index 13ca3ffde..17ee90929 100644 --- a/src/state/queries/notifications/feed.ts +++ b/src/state/queries/notifications/feed.ts @@ -26,6 +26,7 @@ import { useQueryClient, } from '@tanstack/react-query' +import {useGate} from '#/lib/statsig/statsig' import {useAgent} from '#/state/session' import {useModerationOpts} from '../../preferences/moderation-opts' import {STALE} from '..' @@ -56,6 +57,7 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { const unreads = useUnreadNotificationsApi() const enabled = opts?.enabled !== false const lastPageCountRef = useRef(0) + const gate = useGate() const query = useInfiniteQuery< FeedPage, @@ -81,6 +83,7 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { queryClient, moderationOpts, fetchAdditionalData: true, + shouldUngroupFollowBacks: () => gate('ungroup_follow_backs'), }) ).page } |