This commit is contained in:
Kenneth Jannette
2024-01-26 22:56:57 -06:00
parent d0d81eb0e4
commit 4ea38e7b40
3 changed files with 3 additions and 5 deletions

View File

@@ -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);