···4040 pages: data.pages.map(page => {
4141 return {
4242 ...page,
4343- lists: page.lists
4444- /*
4545- * Starter packs use a reference list, which we do not want to
4646- * show on profiles. At some point we could probably just filter
4747- * this out on the backend instead of in the client.
4848- */
4949- .filter(l => l.purpose !== 'app.bsky.graph.defs#referencelist')
5050- // filter by labels
5151- .filter(list => {
5252- const decision = moderateUserList(list, moderationOpts!)
5353- return !decision.ui('contentList').filter
5454- }),
4343+ lists: page.lists.filter(list => {
4444+ const decision = moderateUserList(list, moderationOpts!)
4545+ return !decision.ui('contentList').filter
4646+ }),
5547 }
5648 }),
5749 }