This commit is contained in:
Kenneth Jannette
2024-02-01 22:03:20 -06:00
parent 70fbe4c33b
commit a53362a3bf
2 changed files with 11 additions and 3 deletions

View File

@@ -83,8 +83,16 @@ const SignupPage = () => {
const handleChangeRadioInput = (value) => {
const tempPlan = signupRadioFields.filter((plan) => {
if (plan.value === value) {
return plan;
if (!isUpgrade) {
if (plan.value === value) {
return plan;
}
} else {
if (plan.value === value && plan.value === currentPlan) {
//
} else if (plan.value === value) {
return plan;
}
}
});