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))
diff --git a/components/status/StatusAccountDetails.vue b/components/status/StatusAccountDetails.vue
index 6549477f..eed00a3a 100644
--- a/components/status/StatusAccountDetails.vue
+++ b/components/status/StatusAccountDetails.vue
@@ -5,8 +5,6 @@ const { account, link = true } = defineProps<{
account: Account
link?: boolean
}>()
-
-const accountHandle = $(useAccountHandle(account))
@@ -15,8 +13,6 @@ const accountHandle = $(useAccountHandle(account))
flex="~ col" min-w-0 md:flex="~ row gap-2" md:items-center
>
-
- {{ accountHandle }}
-
+
diff --git a/components/user/UserSwitcher.vue b/components/user/UserSwitcher.vue
index 1349528d..7471f26f 100644
--- a/components/user/UserSwitcher.vue
+++ b/components/user/UserSwitcher.vue
@@ -41,7 +41,7 @@ const sorted = computed(() => {
@click="signout"
>
- Sign out {{ getShortHandle(currentUser.account) }}
+ Sign out {{ getFullHandle(currentUser.account) }}
diff --git a/composables/masto.ts b/composables/masto.ts
index 295aaa16..9872ddfa 100644
--- a/composables/masto.ts
+++ b/composables/masto.ts
@@ -48,7 +48,6 @@ export function getDisplayName(account?: Account, options?: { rich?: boolean })
}
export function getShortHandle({ acct }: Account) {
-
return `@${acct.includes('@') ? acct.split('@')[0] : acct}`
}