go
This commit is contained in:
@@ -153,12 +153,12 @@ const SignupPage = () => {
|
||||
if (isBusy) {
|
||||
return;
|
||||
}
|
||||
/*
|
||||
|
||||
const dataValues = validateData();
|
||||
if (dataValues === null) {
|
||||
return;
|
||||
}
|
||||
*/
|
||||
console.log("dataValues", dataValues);
|
||||
setShowSelectPlan(!showSelectPlan);
|
||||
};
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ const Radio = (props) => {
|
||||
} = props;
|
||||
const classCheckbox = "checkbox";
|
||||
const classOption = "option";
|
||||
const index = isAnnualBilling ? Number("1") : Number("0");
|
||||
const index = isAnnualBilling ? Number("0") : Number("1");
|
||||
return (
|
||||
<div className="radio-container">
|
||||
<div className="radio-option-container" key={name}>
|
||||
|
||||
Reference in New Issue
Block a user