mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Beep boop (#2051)

authored by

Eric Bailey and committed by
GitHub
28f89992 76a3c66f

+7 -4
+7 -4
src/state/queries/post-feed.ts
··· 127 127 } 128 128 }, 129 129 initialPageParam: undefined, 130 - getNextPageParam: lastPage => ({ 131 - api: lastPage.api, 132 - cursor: lastPage.cursor, 133 - }), 130 + getNextPageParam: lastPage => 131 + lastPage.cursor 132 + ? { 133 + api: lastPage.api, 134 + cursor: lastPage.cursor, 135 + } 136 + : undefined, 134 137 select: useCallback( 135 138 (data: InfiniteData<FeedPageUnselected, RQPageParam>) => { 136 139 const tuner = params?.disableTuner