diff --git a/frontend/src/bundles/talent-onboarding/components/contacts-cv-step/contacts-cv-step.tsx b/frontend/src/bundles/talent-onboarding/components/contacts-cv-step/contacts-cv-step.tsx index 8d6af55d7..60670b9ed 100644 --- a/frontend/src/bundles/talent-onboarding/components/contacts-cv-step/contacts-cv-step.tsx +++ b/frontend/src/bundles/talent-onboarding/components/contacts-cv-step/contacts-cv-step.tsx @@ -72,8 +72,8 @@ const ContactsCVStep: React.FC = () => { clearErrors, } = useAppForm({ defaultValues: useMemo(() => { - const fullNameValue = fullName ?? lmsData?.talent.fullName; - const phoneValue = phone ?? lmsData?.talent.phoneNumber; + const fullNameValue = fullName || lmsData?.talent.fullName; + const phoneValue = phone || lmsData?.talent.phoneNumber; return { fullName: fullNameValue,