Skip to content

Commit

Permalink
refactor: Alteração em tag html #89
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilhermeFriedrichS committed Dec 2, 2024
1 parent 6cdc67a commit 3c66584
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/js/creditCard/lknCieloCredit.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ const lknCCContentCielo = props => {
unsubscribe();
};
}, [creditObject, emitResponse.responseTypes.ERROR, emitResponse.responseTypes.SUCCESS, onPaymentSetup]);
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("h4", null, "Pagamento processado pela Cielo API 3.0")), /*#__PURE__*/React.createElement(wcComponents.TextInput, {
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("p", null, "Pagamento processado pela Cielo API 3.0")), /*#__PURE__*/React.createElement(wcComponents.TextInput, {
id: "lkn_cc_cardholder_name",
label: lknCCTranslationsCielo.cardHolder,
value: creditObject.lkn_cc_cardholder_name,
Expand Down
2 changes: 1 addition & 1 deletion resources/js/creditCard/lknCieloCredit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ const lknCCContentCielo = (props) => {
return (
<>
<div>
<h4>Pagamento processado pela Cielo API 3.0</h4>
<p>Pagamento processado pela Cielo API 3.0</p>
</div>

<wcComponents.TextInput
Expand Down
2 changes: 1 addition & 1 deletion resources/js/debitCard/lknCieloDebit.js
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ const lknDCContentCielo = props => {
}
}, 500)
}, [])
return /* #__PURE__ */React.createElement(React.Fragment, null, /* #__PURE__ */React.createElement('div', null, /* #__PURE__ */React.createElement('h4', null, 'Pagamento processado pela Cielo API 3.0')), /* #__PURE__ */React.createElement(wcComponents.TextInput, {
return /* #__PURE__ */React.createElement(React.Fragment, null, /* #__PURE__ */React.createElement('div', null, /* #__PURE__ */React.createElement('p', null, 'Pagamento processado pela Cielo API 3.0')), /* #__PURE__ */React.createElement(wcComponents.TextInput, {
id: 'lkn_dc_cardholder_name',
label: lknDCTranslationsDebitCielo.cardHolder,
value: debitObject.lkn_dc_cardholder_name,
Expand Down
2 changes: 1 addition & 1 deletion resources/js/debitCard/lknCieloDebit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ const lknDCContentCielo = (props) => {
return (
<>
<div>
<h4>Pagamento processado pela Cielo API 3.0</h4>
<p>Pagamento processado pela Cielo API 3.0</p>
</div>

<wcComponents.TextInput
Expand Down

0 comments on commit 3c66584

Please sign in to comment.