We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04124f1 commit 1fa80abCopy full SHA for 1fa80ab
src/three-domain-secure/component.jsx
@@ -139,8 +139,6 @@ export class ThreeDomainSecureComponent {
139
140
async isEligible(merchantPayload: MerchantPayloadData): Promise<boolean> {
141
const data = parseMerchantPayload({ merchantPayload });
142
- console.log(data);
143
- console.log(this.request);
144
try {
145
// $FlowFixMe
146
const { status, links } = await this.request<requestData, responseBody>({
@@ -151,7 +149,7 @@ export class ThreeDomainSecureComponent {
151
149
});
152
150
153
let responseStatus = false;
154
- console.log(links);
+
155
if (status === "PAYER_ACTION_REQUIRED") {
156
this.authenticationURL = links.find(
157
(link) => link.rel === "payer-action"
0 commit comments