This commit is contained in:
Kenneth Jannette
2024-01-26 23:50:18 -06:00
parent 7b0bcb8eee
commit 6341f78c60
2 changed files with 3 additions and 3 deletions

View File

@@ -153,12 +153,12 @@ const SignupPage = () => {
if (isBusy) { if (isBusy) {
return; return;
} }
/*
const dataValues = validateData(); const dataValues = validateData();
if (dataValues === null) { if (dataValues === null) {
return; return;
} }
*/ console.log("dataValues", dataValues);
setShowSelectPlan(!showSelectPlan); setShowSelectPlan(!showSelectPlan);
}; };

View File

@@ -16,7 +16,7 @@ const Radio = (props) => {
} = props; } = props;
const classCheckbox = "checkbox"; const classCheckbox = "checkbox";
const classOption = "option"; const classOption = "option";
const index = isAnnualBilling ? Number("1") : Number("0"); const index = isAnnualBilling ? Number("0") : Number("1");
return ( return (
<div className="radio-container"> <div className="radio-container">
<div className="radio-option-container" key={name}> <div className="radio-option-container" key={name}>