diff options
author | Eric Bailey <git@esb.lol> | 2024-09-25 10:38:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-25 10:38:32 -0500 |
commit | 224ff42c233007545152b2bfa809e736edb9cc34 (patch) | |
tree | 0a002ab896b8b9f494d54ca064a8b43d359d4694 /src/lib/statsig/gates.ts | |
parent | be3c6ab93a5e3f573ceb8909df068d8a87f86474 (diff) | |
download | voidsky-224ff42c233007545152b2bfa809e736edb9cc34.tar.zst |
Add gate to increase post-feed page size (#5473)
* Add gate to increase post-feed page size * Exclude Discover * Remove exception * Clarify intent * Let gate cache
Diffstat (limited to 'src/lib/statsig/gates.ts')
-rw-r--r-- | src/lib/statsig/gates.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index 7966767d1..866d87aef 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -1,3 +1,5 @@ export type Gate = // Keep this alphabetic please. - 'debug_show_feedcontext' | 'suggested_feeds_interstitial' + | 'debug_show_feedcontext' + | 'post_feed_lang_window' + | 'suggested_feeds_interstitial' |