Currently suggestions are provided as an infinite list. That increases the page size (which makes it hard to reach the "for later" section on top) and contributes to keep a high noise ratio when exploring suggestions.
A paginated approach can avoid that:
- We can provide suggestions on smaller pages (e.g., 10 at a time), that users can "refresh" to get a new set of suggestions. That will encourage users to mark interesting suggestions for later.
- If an individual suggestion is discarded, it is removed and a new one is added at the end of the list. Thus, keeping the same number of suggestions in total.