fix: VAN-1090 - Handled country field's errors on empty field (#643)

This commit is contained in:
Shafqat Farhan
2022-09-13 14:17:15 +05:00
committed by GitHub
parent e059fab172
commit 0c32b98e85

View File

@@ -111,6 +111,7 @@ const reducer = (state = defaultState, action) => {
registrationFormData: {
...state.registrationFormData,
country: countryCode,
errors: { ...state.registrationFormData.errors, country: '' },
},
};
}