mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 02:11:49 +01:00
Merge pull request #5313 from mempool/mononaut/enable-cashapp
[accelerator] enable cashapp
This commit is contained in:
commit
5bb3e930cc
@ -551,7 +551,7 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get couldPayWithCashapp() {
|
get couldPayWithCashapp() {
|
||||||
if (!this.cashappEnabled || this.stateService.referrer !== 'https://cash.app/') {
|
if (!this.cashappEnabled) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return !!this.estimate?.availablePaymentMethods?.cashapp;
|
return !!this.estimate?.availablePaymentMethods?.cashapp;
|
||||||
@ -574,7 +574,7 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get canPayWithCashapp() {
|
get canPayWithCashapp() {
|
||||||
if (!this.cashappEnabled || !this.conversions || this.stateService.referrer !== 'https://cash.app/') {
|
if (!this.cashappEnabled || !this.conversions) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user