fix: revert using useSelfAccount (hotfix)

This reverts commit 11fc2572d5.
This commit is contained in:
Daniel Roe 2023-01-13 20:57:47 +00:00
parent 11fc2572d5
commit cfbb93045c
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@ const { account, command, context, ...props } = defineProps<{
command?: boolean
}>()
const isSelf = useSelfAccount(() => account)
const isSelf = $computed(() => currentUser.value?.account.id === account.id)
const enable = $computed(() => !isSelf && currentUser.value)
const relationship = $computed(() => props.relationship || useRelationship(account).value)