diff --git a/client/src/components/onboarding/OrganisationAddress.vue b/client/src/components/onboarding/OrganisationAddress.vue
index 0ccf8b8a..b8b59889 100644
--- a/client/src/components/onboarding/OrganisationAddress.vue
+++ b/client/src/components/onboarding/OrganisationAddress.vue
@@ -4,12 +4,12 @@ import { useEntities } from "@/services/entities";
const props = defineProps<{
modelValue: {
- company_name: string;
- company_street: string;
- company_street_number: string;
- company_postal_code: string;
- company_city: string;
- company_country: string;
+ organisation_detail_name: string;
+ organisation_street: string;
+ organisation_street_number: string;
+ organisation_postal_code: string;
+ organisation_city: string;
+ organisation_country_code: string;
};
}>();
@@ -39,7 +39,7 @@ const orgAddress = computed({