This commit is contained in:
Kenneth Jannette
2024-01-28 15:42:29 -06:00
parent 57de767624
commit 6f060639a1
3 changed files with 12 additions and 13 deletions

View File

@@ -49,7 +49,6 @@ const SignupPage = () => {
: process.env.REACT_APP_API_PROD;
const [showAddAccount, setShowAddAccount] = useState(false);
const [numberOfAccountsToAdd, setNumberOfAccountsToAdd] = useState();
const orderSummary = { plan: selectedPlan, price: 1 };
const handleChangeInput = (e, name) => {
const newData = handleFormDataChange(e, name, data, signupFields);
@@ -607,7 +606,6 @@ const SignupPage = () => {
setShowPaymentModal={setShowPaymentModal}
handleChangePaymentInput={handleChangePaymentInput}
handleSignup={handleSignup}
orderSummary={orderSummary}
notice={notice}
setNotice={setNotice}
selectedPlan={selectedPlan}