diff --git a/components/account/AccountFollowButton.vue b/components/account/AccountFollowButton.vue
index ecada64e54..4c229e4aa0 100644
--- a/components/account/AccountFollowButton.vue
+++ b/components/account/AccountFollowButton.vue
@@ -1,10 +1,13 @@
@@ -75,7 +129,7 @@ const buttonStyle = $computed(() => {
rounded-full flex="~ gap2 center" font-500 min-w-30 h-fit px3 py1
:class="buttonStyle"
:hover="!relationship?.blocking && !relationship?.muting && relationship?.following ? 'border-red text-red' : 'bg-base border-primary text-primary'"
- @click="relationship?.blocking ? unblock() : relationship?.muting ? unmute() : toggleFollowAccount(relationship!, account)"
+ @click="handleClick"
>
{{ $t('account.blocking') }}
diff --git a/components/account/AccountHeader.vue b/components/account/AccountHeader.vue
index 760dfc0ef0..9ed70e1aad 100644
--- a/components/account/AccountHeader.vue
+++ b/components/account/AccountHeader.vue
@@ -1,5 +1,7 @@
-