Adjust gates (#7132)

* Remove dead gate

* Adjust gates

* No need to disable exposures
This commit is contained in:
dan
2024-12-16 22:26:40 +00:00
committed by GitHub
parent c339dc5b05
commit de97c07c63
6 changed files with 14 additions and 29 deletions
+1 -4
View File
@@ -144,11 +144,8 @@ export function usePostFeedQuery(
/**
* The number of posts to fetch in a single request. Because we filter
* unwanted content, we may over-fetch here to try and fill pages by
* `MIN_POSTS`.
* `MIN_POSTS`. But if you're doing this, ask @why if it's ok first.
*/
// TEMPORARILY DISABLING GATE TO PREVENT EVENT CONSUMPTION @TODO EME-GATE
// const fetchLimit = gate('post_feed_lang_window') ? 100 : MIN_POSTS
const fetchLimit = MIN_POSTS
// Make sure this doesn't invalidate unless really needed.