diff options
author | dan <dan.abramov@gmail.com> | 2024-12-16 22:26:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-16 22:26:40 +0000 |
commit | de97c07c63ba4a32a5b5635075a3f9fea7831ff1 (patch) | |
tree | 376b8399c169ce2d96be5f841c753e68d7b34d37 /src/state/queries/post-feed.ts | |
parent | c339dc5b05282ba917bed9d02c914453cf38d437 (diff) | |
download | voidsky-de97c07c63ba4a32a5b5635075a3f9fea7831ff1.tar.zst |
Adjust gates (#7132)
* Remove dead gate * Adjust gates * No need to disable exposures
Diffstat (limited to 'src/state/queries/post-feed.ts')
-rw-r--r-- | src/state/queries/post-feed.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 696e28f9c..2eb604627 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -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. |