diff --git a/components/account/AccountHoverCard.vue b/components/account/AccountHoverCard.vue index fabba76f..149d13a6 100644 --- a/components/account/AccountHoverCard.vue +++ b/components/account/AccountHoverCard.vue @@ -10,15 +10,15 @@ defineProps<{
- + {{ formattedNumber(account.statusesCount) }} Posts - + {{ humanReadableNumber(account.followingCount) }} Following - + {{ humanReadableNumber(account.followersCount) }} Followers
diff --git a/components/account/AccountInfo.vue b/components/account/AccountInfo.vue index 49993e83..ff0167b7 100644 --- a/components/account/AccountInfo.vue +++ b/components/account/AccountInfo.vue @@ -7,8 +7,6 @@ const { account, link = true, fullServer = false } = defineProps<{ fullServer?: boolean hover?: boolean }>() - -const accountHandle = $(useAccountHandle(account, fullServer))