diff --git a/app/pages/about/index.vue b/app/pages/about/index.vue index 7f995a2..1bcd3b3 100644 --- a/app/pages/about/index.vue +++ b/app/pages/about/index.vue @@ -1,36 +1,37 @@ @@ -42,7 +43,9 @@ { label: $t('navigation.home'), to: localePath('/') }, { label: $t('navigation.about-us') }, ]; - const { data: companyProfile, pending, error } = await useCompanyProfile(); + const { data, pending, error } = useCompanyProfile(); + + const companyProfile = computed(() => data.value ?? null); const openMap = () => { window.open(localePath('/locate'));