Skip to content

Commit 1fa80ab

Browse files
committed
remove console logs
1 parent 04124f1 commit 1fa80ab

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: src/three-domain-secure/component.jsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,6 @@ export class ThreeDomainSecureComponent {
139139

140140
async isEligible(merchantPayload: MerchantPayloadData): Promise<boolean> {
141141
const data = parseMerchantPayload({ merchantPayload });
142-
console.log(data);
143-
console.log(this.request);
144142
try {
145143
// $FlowFixMe
146144
const { status, links } = await this.request<requestData, responseBody>({
@@ -151,7 +149,7 @@ export class ThreeDomainSecureComponent {
151149
});
152150

153151
let responseStatus = false;
154-
console.log(links);
152+
155153
if (status === "PAYER_ACTION_REQUIRED") {
156154
this.authenticationURL = links.find(
157155
(link) => link.rel === "payer-action"

0 commit comments

Comments
 (0)