This commit is contained in:
Kenneth Jannette
2024-01-19 17:57:17 -06:00
parent 0eb744ab76
commit 670b76a607

View File

@@ -22,6 +22,7 @@ const PaymentModal = ({
handleChangePaymentInput, handleChangePaymentInput,
modalText, modalText,
handleSignup, handleSignup,
setShowPaymentModal,
}) => { }) => {
const fieldsChunkSize = 2; const fieldsChunkSize = 2;
@@ -69,7 +70,7 @@ const PaymentModal = ({
<Button <Button
disabled={isBusy} disabled={isBusy}
className="secondary-button" className="secondary-button"
onClick={"onCancel"} onClick={() => setShowPaymentModal(false)}
labelText="Cancel" labelText="Cancel"
/> />
<Button <Button