diff --git a/src/Components/Facility/FacilityCreate.tsx b/src/Components/Facility/FacilityCreate.tsx index 4884931bfc8..b16fb688031 100644 --- a/src/Components/Facility/FacilityCreate.tsx +++ b/src/Components/Facility/FacilityCreate.tsx @@ -421,8 +421,8 @@ export const FacilityCreate = (props: FacilityProps) => { features: state.form.features, ward: state.form.ward, kasp_empanelled: JSON.parse(state.form.kasp_empanelled), - latitude: state.form.latitude, - longitude: state.form.longitude, + latitude: state.form.latitude || null, + longitude: state.form.longitude || null, phone_number: parsePhoneNumberFromString( state.form.phone_number )?.format("E.164"),