From 87dc8f903633f8c31075f75cfe7cff7457993017 Mon Sep 17 00:00:00 2001 From: Echo Date: Thu, 26 Mar 2026 15:15:05 +0100 Subject: [PATCH] Profile redesign: Fix follower/following pagination (#38417) --- app/javascript/mastodon/selectors/user_lists.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/mastodon/selectors/user_lists.ts b/app/javascript/mastodon/selectors/user_lists.ts index 9d681aa255..ed5a3271ba 100644 --- a/app/javascript/mastodon/selectors/user_lists.ts +++ b/app/javascript/mastodon/selectors/user_lists.ts @@ -29,7 +29,7 @@ export const selectUserListWithoutMe = createAppSelector( .filter((id) => id !== currentAccountId) .toArray(), isLoading: !!list.get('isLoading', true), - hasMore: !!list.get('hasMore', false), + hasMore: !!list.get('next'), }; }, );