Remove console logs

This commit is contained in:
Pedro Silva 2024-04-15 17:38:23 +01:00
parent 5eb39de540
commit 2e6f403ed1
No known key found for this signature in database
GPG key ID: E2EE20C0669D24B3
3 changed files with 3 additions and 18 deletions

View file

@ -15,11 +15,9 @@ class Fastlane {
window.paypal.Fastlane(config)
.then((result) => {
this.init(result);
console.log('[AXO] Connected', result);
resolve();
})
.catch((error) => {
console.error('[AXO] Failed to connect', error);
reject();
});
});
@ -32,8 +30,6 @@ class Fastlane {
this.FastlaneCardComponent = this.connection.FastlaneCardComponent;
this.FastlanePaymentComponent = this.connection.FastlanePaymentComponent;
this.FastlaneWatermarkComponent = this.connection.FastlaneWatermarkComponent
console.log('[AXO] Fastlane initialized', this);
}
setLocale(locale) {