From 98103e8344e058d9e1fe6d42eb55fc128d15406c Mon Sep 17 00:00:00 2001 From: vhande <78013271+vhande@users.noreply.github.com> Date: Fri, 7 Feb 2025 12:46:35 +0100 Subject: [PATCH] Fix contact info --- src/pages/steps/AdditionalInformationStep/ContactInfoStep.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/steps/AdditionalInformationStep/ContactInfoStep.tsx b/src/pages/steps/AdditionalInformationStep/ContactInfoStep.tsx index 0b8b02be8..7d93be277 100644 --- a/src/pages/steps/AdditionalInformationStep/ContactInfoStep.tsx +++ b/src/pages/steps/AdditionalInformationStep/ContactInfoStep.tsx @@ -82,6 +82,7 @@ const ContactInfoStep = ({ }, [contactInfo]); useEffect(() => { + if (!organizerContactInfo) return; updateContactInfoState(organizerContactInfo); }, [organizerContactInfo]);