[accelerator] enable cashapp

This commit is contained in:
Mononaut 2024-07-11 07:56:15 +00:00
parent f24223ca06
commit 1c135b4c67
No known key found for this signature in database
GPG Key ID: A3F058E41374C04E

View File

@ -551,7 +551,7 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
}
get couldPayWithCashapp() {
if (!this.cashappEnabled || this.stateService.referrer !== 'https://cash.app/') {
if (!this.cashappEnabled) {
return false;
}
return !!this.estimate?.availablePaymentMethods?.cashapp;
@ -574,7 +574,7 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
}
get canPayWithCashapp() {
if (!this.cashappEnabled || !this.conversions || this.stateService.referrer !== 'https://cash.app/') {
if (!this.cashappEnabled || !this.conversions) {
return false;
}