diff --git a/components/account/AccountFollowButton.vue b/components/account/AccountFollowButton.vue index d8aa2512..406cfe41 100644 --- a/components/account/AccountFollowButton.vue +++ b/components/account/AccountFollowButton.vue @@ -5,6 +5,7 @@ const { account } = defineProps<{ account: Account }>() +const isSelf = $computed(() => currentUser.value?.account?.id === account.id) const relationship = $(useRelationship(account)) async function toggleFollow() { @@ -14,7 +15,11 @@ async function toggleFollow() {