more
This commit is contained in:
@@ -83,17 +83,9 @@ const SignupPage = () => {
|
||||
|
||||
const handleChangeRadioInput = (value) => {
|
||||
const tempPlan = signupRadioFields.filter((plan) => {
|
||||
if (!isUpgrade) {
|
||||
if (plan.value === value) {
|
||||
return plan;
|
||||
}
|
||||
} else {
|
||||
if (plan.value === value && plan.value === currentPlan) {
|
||||
// ff
|
||||
} else if (plan.value === value) {
|
||||
return plan;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
setSelectedPlan(tempPlan);
|
||||
|
||||
@@ -52,7 +52,7 @@ const Radio = (props) => {
|
||||
<div className="radio-description-box">
|
||||
{description.map((item, i) => {
|
||||
const el =
|
||||
item == "First month free!" ? (
|
||||
item == "First month free!" && !isUpgrade ? (
|
||||
<div className="offer-div">
|
||||
<p className="signup-feat-item-bold">{item}</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user