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