This commit is contained in:
Kenneth Jannette
2024-01-27 14:18:27 -06:00
parent 06f98ec8a9
commit 9b47f48557
2 changed files with 5 additions and 5 deletions

View File

@@ -39,12 +39,12 @@ const SignupPage = () => {
); );
const [showPaymentModal, setShowPaymentModal] = useState(false); const [showPaymentModal, setShowPaymentModal] = useState(false);
const [showSelectPlan, setShowSelectPlan] = useState(false); const [showSelectPlan, setShowSelectPlan] = useState(false);
const [activeRadioOption, setActiveRadioOption] = useState("monthlyBasic"); const [activeRadioOption, setActiveRadioOption] = useState("Partner");
const [selectedPlan, setSelectedPlan] = useState({}); const [selectedPlan, setSelectedPlan] = useState({});
const [isAnnual, setIsAnnual] = useState(false); const [isAnnual, setIsAnnual] = useState(false);
// Could also go in App.js if needed in the future // Could also go in App.js if needed in the future
const stripe = new Stripe(stripeApiKey); const stripe = new Stripe(stripeApiKey);
console.log("activeRadioOption", activeRadioOption);
const apiUrl = const apiUrl =
process.env.NODE_ENV === "development" process.env.NODE_ENV === "development"
? process.env.REACT_APP_API_DEV ? process.env.REACT_APP_API_DEV

View File

@@ -2,7 +2,7 @@ export const signupRadioFields = [
{ {
name: "Associate", name: "Associate",
label: "Monthly - basic", label: "Monthly - basic",
value: "monthlyBasic", value: "associate",
description: [ description: [
"1 document per month", "1 document per month",
"Carryover 1 document to next period", "Carryover 1 document to next period",
@@ -18,7 +18,7 @@ export const signupRadioFields = [
{ {
name: "Partner", name: "Partner",
label: "Monthly - pro", label: "Monthly - pro",
value: "monthlyProPlan", value: "partner",
description: [ description: [
"3 documents per month", "3 documents per month",
"Carryover 2 documents to next period", "Carryover 2 documents to next period",
@@ -34,7 +34,7 @@ export const signupRadioFields = [
{ {
name: "Senior Partner", name: "Senior Partner",
label: "Annual - unlimited annual", label: "Annual - unlimited annual",
value: "annualUnlimited", value: "seniorPartner",
description: [ description: [
"Unlimited documents.", "Unlimited documents.",
"Triage-level support", "Triage-level support",