diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 4e5722ac2c..8374b3da7e 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -138,9 +138,7 @@ export function usePostFeedQuery( const isDiscover = feedDesc.includes(DISCOVER_FEED_URI) const [pageSize] = React.useState(() => { - // add exclusions here - const isExcluded = isDiscover - return !isExcluded && gate('post_feed_lang_window') ? 100 : PAGE_SIZE + return gate('post_feed_lang_window') ? 100 : PAGE_SIZE }) // Make sure this doesn't invalidate unless really needed.