diff --git a/components/account/AccountMoreButton.vue b/components/account/AccountMoreButton.vue
index b2537416..5bda60c4 100644
--- a/components/account/AccountMoreButton.vue
+++ b/components/account/AccountMoreButton.vue
@@ -6,6 +6,8 @@ const { account } = defineProps<{
}>()
let relationship = $(useRelationship(account))
+const isSelf = $computed(() => currentUser.value?.account.id === account.id)
+
const mute = async () => {
// TODO: Add confirmation
@@ -52,26 +54,28 @@ const unblock = async () => {
-
- Mention @{{ account.acct }}
-
-
- Direct message @{{ account.acct }}
-
+
+
+ Mention @{{ account.acct }}
+
+
+ Direct message @{{ account.acct }}
+
-
- Mute @{{ account.acct }}
-
-
- Unmute @{{ account.acct }}
-
+
+ Mute @{{ account.acct }}
+
+
+ Unmute @{{ account.acct }}
+
-
- Block @{{ account.acct }}
-
-
- Unblock @{{ account.acct }}
-
+
+ Block @{{ account.acct }}
+
+
+ Unblock @{{ account.acct }}
+
+