diff --git a/src/Components/SignupPage/SignupPage.js b/src/Components/SignupPage/SignupPage.js index 8887430..6aaee18 100644 --- a/src/Components/SignupPage/SignupPage.js +++ b/src/Components/SignupPage/SignupPage.js @@ -39,7 +39,6 @@ const SignupPage = () => { const [showPaymentModal, setShowPaymentModal] = useState(false); const [showSelectPlan, setShowSelectPlan] = useState(true); const [activeRadioOption, setActiveRadioOption] = useState("monthlyBasic"); - const modalText = "Description of monthly and annual subscriptions"; const [selectedPlan, setSelectedPlan] = useState({}); const [isAnnualBilling, setIsAnnualBilling] = useState(false); // Could also go in App.js if needed in the future @@ -50,9 +49,7 @@ const SignupPage = () => { ? process.env.REACT_APP_API_DEV : process.env.REACT_APP_API_PROD; - const basicPrice = 59; - const proPrice = 139; - const unlimtedPrice = 169; + const modalText = "Description of monthly and annual subscriptions"; const handleChangeInput = (e, name) => { const newData = handleFormDataChange(e, name, data, signupFields); diff --git a/src/Constants/Fields/RadioFields.js b/src/Constants/Fields/RadioFields.js index 485f69b..2fcdf09 100644 --- a/src/Constants/Fields/RadioFields.js +++ b/src/Constants/Fields/RadioFields.js @@ -7,6 +7,7 @@ export const signupRadioFields = [ "1 document per month", "Carryover 1 document to next period", "24/7 support", + "First month is free!", ], details: "", pricing: [ diff --git a/src/pageElements/Radio.js b/src/pageElements/Radio.js index 1cb2ba9..0294e75 100644 --- a/src/pageElements/Radio.js +++ b/src/pageElements/Radio.js @@ -45,7 +45,7 @@ const Radio = (props) => {
- {description.map((item) => { + {description.map((item, i) => { return

{item}

; })}