diff --git a/components/status/StatusReplyingTo.vue b/components/status/StatusReplyingTo.vue index 9d521914..9e523afc 100644 --- a/components/status/StatusReplyingTo.vue +++ b/components/status/StatusReplyingTo.vue @@ -10,7 +10,7 @@ const { }>() const isSelf = computed(() => status.inReplyToAccountId === status.account.id) -const account = isSelf ? computed(() => status.account) : useAccountById(status.inReplyToAccountId) +const account = isSelf.value ? computed(() => status.account) : useAccountById(status.inReplyToAccountId)