diff options
author | dan <dan.abramov@gmail.com> | 2024-08-08 15:25:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 15:25:42 +0100 |
commit | f1031d100b583fa289e654c5dfba6d251ea85272 (patch) | |
tree | f225590178c006b01399950a91a1741766c55f92 /src/view/com/posts/Feed.tsx | |
parent | 1e3b2d6f42839501ce47f88a19ffd477f1e2f82d (diff) | |
download | voidsky-f1031d100b583fa289e654c5dfba6d251ea85272.tar.zst |
Cleanup flags (#4891)
* Remove launched gates * Remove disabled gates
Diffstat (limited to 'src/view/com/posts/Feed.tsx')
-rw-r--r-- | src/view/com/posts/Feed.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx index ef4633319..54ea9b140 100644 --- a/src/view/com/posts/Feed.tsx +++ b/src/view/com/posts/Feed.tsx @@ -349,8 +349,7 @@ let Feed = ({ const shouldShow = (interstitial.type === feedInterstitialType && gate('suggested_feeds_interstitial')) || - (interstitial.type === followInterstitialType && - gate('suggested_follows_interstitial')) || + interstitial.type === followInterstitialType || interstitial.type === progressGuideInterstitialType if (shouldShow) { |