This commit is contained in:
Kenneth Jannette
2024-01-19 18:37:12 -06:00
parent 38a988e420
commit 14efb6d311
4 changed files with 31 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ const PaymentModal = ({
<Row key={`row${j}`}>
{names.map((name, i) => (
<Col key={`${name}${i + fieldsChunkSize * j}`} className="mb-3">
{console.log("paymentdata", paymentData)}
{console.log("paymentdata, name", paymentData, name)}
<TextInput
name={name}
value={paymentData[name].value}
@@ -61,7 +61,7 @@ const PaymentModal = ({
<Modal.Title>Enter Payment Card Information</Modal.Title>
</Modal.Header>
<Modal.Body>
<span>{modalText}</span>
<div className="payment-modal-text-wrapper">{modalText}</div>
<Form className="payment-form">
<ModalForm />
</Form>