diff --git a/components/account/AccountHeader.vue b/components/account/AccountHeader.vue index cc69486e..e2779d21 100644 --- a/components/account/AccountHeader.vue +++ b/components/account/AccountHeader.vue @@ -20,6 +20,7 @@ const relationship = $(useRelationship(account)) const namedFields = ref([]) const iconFields = ref([]) +const hasHeader = $computed(() => !account.header.endsWith('/original/missing.png')) function getFieldIconTitle(fieldName: string) { return fieldName === 'Joined' ? t('account.joined') : fieldName @@ -85,9 +86,9 @@ const isNotifiedOnPost = $computed(() => !!relationship?.notifying)