more
This commit is contained in:
@@ -31,7 +31,7 @@ const PaymentModal = ({
|
||||
(names, j) => (
|
||||
<Row key={`row${j}`}>
|
||||
{names.map((name, i) => (
|
||||
<Row key={`${name}${i + fieldsChunkSize * j}`} className="mb-3">
|
||||
<Col key={`${name}${i + fieldsChunkSize * j}`} className="mb-3">
|
||||
{console.log("paymentdata", paymentData)}
|
||||
<TextInput
|
||||
name={name}
|
||||
@@ -48,7 +48,7 @@ const PaymentModal = ({
|
||||
values={paymentfields[name].values}
|
||||
disabled={isBusy}
|
||||
/>
|
||||
</Row>
|
||||
</Col>
|
||||
))}
|
||||
</Row>
|
||||
)
|
||||
@@ -77,7 +77,7 @@ const PaymentModal = ({
|
||||
disabled={isBusy}
|
||||
className="primary-button"
|
||||
onClick={handleSignup}
|
||||
labelText={buttonLabelText}
|
||||
labelText="Signup"
|
||||
/>
|
||||
</Modal.Footer>
|
||||
</Modal>
|
||||
|
||||
@@ -106,6 +106,7 @@ const SignupPage = () => {
|
||||
|
||||
const handleProceedToPayment = (e) => {
|
||||
e.preventDefault();
|
||||
/*
|
||||
if (isBusy) {
|
||||
return;
|
||||
}
|
||||
@@ -113,6 +114,7 @@ const SignupPage = () => {
|
||||
if (dataValues === null) {
|
||||
return;
|
||||
}
|
||||
*/
|
||||
setShowPaymentModal(true);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user