From c4743dad88b15dad86f844ffc05d1613b0b17271 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 24 Sep 2024 18:15:38 -0500 Subject: [PATCH] Remove exception --- src/state/queries/post-feed.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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.