more
This commit is contained in:
@@ -13,22 +13,21 @@ const PaymentModal = ({
|
||||
paymentData,
|
||||
paymentfields,
|
||||
handleChangePaymentInput,
|
||||
modalText,
|
||||
orderSummary,
|
||||
handleSignUp,
|
||||
setShowPaymentModal,
|
||||
handleSignup,
|
||||
selectedPlan,
|
||||
isAnnual,
|
||||
fieldsChunkSize,
|
||||
}) => {
|
||||
const fieldsChunkSize = 2;
|
||||
console.log("***", selectedPlan, isAnnual);
|
||||
return (
|
||||
<Modal show="true" size="lg">
|
||||
<Modal.Header closeButton>
|
||||
<Modal.Title>Enter Payment Information</Modal.Title>
|
||||
</Modal.Header>
|
||||
<Modal.Body>
|
||||
<div className="payment-modal-text-wrapper">{modalText}</div>
|
||||
<div className="payment-modal-text-wrapper">{orderSummary.plan}</div>
|
||||
<Form className="payment-form">
|
||||
{splitEvery(Object.keys(paymentfields), fieldsChunkSize).map(
|
||||
(names, j) => (
|
||||
|
||||
Reference in New Issue
Block a user