diff options
author | Eric Bailey <git@esb.lol> | 2024-07-04 16:28:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-04 22:28:38 +0100 |
commit | 3407206f52a03223b9eba925f030cf371833a8ed (patch) | |
tree | 33060612a4a5b23232d85b966906ad7f0a1ba35d /src/view/com/posts/Feed.tsx | |
parent | 1c6bfc02fb9da56281bdc449a951725fb2ec808d (diff) | |
download | voidsky-3407206f52a03223b9eba925f030cf371833a8ed.tar.zst |
[D1X] Use user action and viewing history to inform suggested follows (#4727)
* Use user action and viewing history to inform suggested follows * Remove dynamic spreads * Track more info about seen posts * Add ranking --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Diffstat (limited to 'src/view/com/posts/Feed.tsx')
-rw-r--r-- | src/view/com/posts/Feed.tsx | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx index 4a9b37291..7623ff37e 100644 --- a/src/view/com/posts/Feed.tsx +++ b/src/view/com/posts/Feed.tsx @@ -110,24 +110,7 @@ const interstials: Record< | 'interstitialProgressGuide' })[] > = { - following: [ - { - type: followInterstitialType, - params: { - variant: 'default', - }, - key: followInterstitialType, - slot: 20, - }, - { - type: feedInterstitialType, - params: { - variant: 'default', - }, - key: feedInterstitialType, - slot: 40, - }, - ], + following: [], discover: [ { type: progressGuideInterstitialType, @@ -138,14 +121,6 @@ const interstials: Record< slot: 0, }, { - type: feedInterstitialType, - params: { - variant: 'default', - }, - key: feedInterstitialType, - slot: 40, - }, - { type: followInterstitialType, params: { variant: 'default', |