This commit is contained in:
Kenneth Jannette
2024-01-27 16:22:53 -06:00
parent b8c3610c0d
commit 27af139ea3
2 changed files with 5 additions and 1 deletions

View File

@@ -17,9 +17,11 @@ const PaymentModal = ({
handleSignUp, handleSignUp,
setShowPaymentModal, setShowPaymentModal,
handleSignup, handleSignup,
selectedPlan,
isAnnual,
}) => { }) => {
const fieldsChunkSize = 2; const fieldsChunkSize = 2;
console.log("***", selectedPlan, isAnnual);
return ( return (
<Modal show="true" size="lg"> <Modal show="true" size="lg">
<Modal.Header closeButton> <Modal.Header closeButton>

View File

@@ -451,6 +451,8 @@ const SignupPage = () => {
modalText={modalText} modalText={modalText}
notice={notice} notice={notice}
setNotice={setNotice} setNotice={setNotice}
selectedPlan={selectedPlan}
isAnnual={isAnnual}
/> />
) : ( ) : (
<></> <></>