From 72edfe77f747dd1b48bb13ecc926b7820a9792c3 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Tue, 17 Dec 2024 15:10:42 +0900 Subject: [PATCH] refactor: rename `accountPaginator` to `postPaginator` --- pages/[[server]]/@[account]/index/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/[[server]]/@[account]/index/index.vue b/pages/[[server]]/@[account]/index/index.vue index 0728dbc4..e8ed7a47 100644 --- a/pages/[[server]]/@[account]/index/index.vue +++ b/pages/[[server]]/@[account]/index/index.vue @@ -24,7 +24,7 @@ function reorderAndFilter(items: mastodon.v1.Status[]) { } const pinnedPaginator = useMastoClient().v1.accounts.$select(account.id).statuses.list({ pinned: true }) -const accountPaginator = useMastoClient().v1.accounts.$select(account.id).statuses.list({ limit: 30, excludeReplies: true }) +const postPaginator = useMastoClient().v1.accounts.$select(account.id).statuses.list({ limit: 30, excludeReplies: true }) if (account) { useHydratedHead({ @@ -39,6 +39,6 @@ if (account) {
- +