This commit is contained in:
Kenneth Jannette
2024-01-19 15:23:21 -06:00
parent e3db6a3eb3
commit 1608569908
2 changed files with 9 additions and 5 deletions

View File

@@ -106,14 +106,13 @@ const SignupPage = () => {
}
const handleSignup = async (e) => {
console.log("handleSignup");
/*
e.preventDefault();
if (isBusy) {
return;
}
const dataValues = validateData();
if (dataValues === null) {
return;
}
setIsBusy(true);
try {
const userCredential = await createUserWithEmailAndPassword(
@@ -130,9 +129,14 @@ const SignupPage = () => {
error.message || "Sorry, something went wrong. Please try again."
);
}
*/
};
const handleProceed = () => {
const dataValues = validateData();
if (dataValues === null) {
return;
}
setShowPaymentModal(true);
};