This commit is contained in:
Kenneth Jannette
2024-01-19 18:51:05 -06:00
parent 85733c4393
commit 36b8a722b3
2 changed files with 2 additions and 10 deletions

View File

@@ -62,7 +62,7 @@ const SignupPage = () => {
};
const validatePaymentData = () => {
const newPaymentData = ""; // getValidatedFormData(data, signupfields);
const newPaymentData = getValidatedFormData(data, paymentfields);
const hasErrors = isFormDataHasErrors(newPaymentData);
setPaymentData(newPaymentData);
return hasErrors ? null : objectMap(({ value }) => value, newPaymentData);