This commit is contained in:
Kenneth Jannette
2024-01-28 14:53:06 -06:00
parent 393f795745
commit 3a77baeca5
3 changed files with 6 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ const SignupPage = () => {
const [showPaymentModal, setShowPaymentModal] = useState(false);
const [showSelectPlan, setShowSelectPlan] = useState(false);
const [activeRadioOption, setActiveRadioOption] = useState("partner");
const [selectedPlan, setSelectedPlan] = useState([{}]);
const [selectedPlan, setSelectedPlan] = useState([signupRadioFields[1]]);
const [isAnnual, setIsAnnual] = useState(false);
const stripe = new Stripe(stripeApiKey);
const apiUrl =

View File

@@ -1,13 +1,13 @@
export const signupRadioFields = [
{
name: "Associate",
label: "Monthly - basic",
label: "Associate",
value: "associate",
description: [
"1 document per month",
"Carryover 1 document to next period",
"24/7 support",
"First month is free!",
"First month free!",
],
details: "",
pricing: [
@@ -17,7 +17,7 @@ export const signupRadioFields = [
},
{
name: "Partner",
label: "Monthly - pro",
label: "Partner",
value: "partner",
description: [
"3 documents per month",
@@ -33,7 +33,7 @@ export const signupRadioFields = [
},
{
name: "Senior Partner",
label: "Annual - unlimited annual",
label: "Senior Partner",
value: "seniorPartner",
description: [
"Unlimited documents.",

View File

@@ -46,7 +46,7 @@ const Radio = (props) => {
<div className="radio-description-box">
{description.map((item, i) => {
const el =
item == "First month is free!" ? (
item == "First month free!" ? (
<div className="offer-div">
<p className="signup-feat-item-bold">{item}</p>
</div>