Remove exception

This commit is contained in:
Eric Bailey
2024-09-24 18:15:38 -05:00
parent 0e00552c90
commit c4743dad88
+1 -3
View File
@@ -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.