diff --git a/pages/@[account]/index/followers.vue b/pages/@[account]/index/followers.vue index 825c1564..0a749e59 100644 --- a/pages/@[account]/index/followers.vue +++ b/pages/@[account]/index/followers.vue @@ -5,7 +5,7 @@ const handle = $(computedEager(() => params.account as string)) definePageMeta({ name: 'account-followers' }) const account = await fetchAccountByHandle(handle) -const paginator = account ? useMasto().accounts.getFollowersIterable(account.id, {}) : null +const paginator = account ? useMasto().accounts.iterateFollowers(account.id, {}) : null