Index: src/services/ActivityPubService.js
===================================================================
--- src/services/ActivityPubService.js	(revision 732272a320793693be207b1b67af729b1feca30f)
+++ src/services/ActivityPubService.js	(revision a5caa7318c74f3934365116bbc01979a35645972)
@@ -1200,8 +1200,8 @@
 // these as the "Featured" tab (pinned to the profile). Posts come ordered by pin
 // rank; embedded as full Notes so a remote server doesn't need extra fetches.
-export function buildFeatured(base, site, posts) {
+export function buildFeatured(base, site, posts, { page = false } = {}) {
   const id = `${actorId(base, site.slug)}/featured`;
   const items = (posts || []).map((p) => buildNote(base, site, p));
-  return pagedCollection(id, items);
+  return pagedCollection(id, items, { page });
 }
 
