Merge pull request #5363 from mempool/nymkappa/apple-pay-hotfix

[accelerator] hide fiat payment method section if none available
This commit is contained in:
wiz 2024-07-24 17:11:01 -05:00 committed by GitHub
commit 2c5d7fbc9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -395,6 +395,7 @@
</div>
}
}
@if (canPayWithCashapp || canPayWithApplePay) {
<div class="col-sm text-center d-flex flex-column justify-content-center align-items-center">
<p><ng-container i18n="transaction.pay|Pay button label">Pay</ng-container>&nbsp;<app-fiat [value]="cost"></app-fiat> with</p>
@if (canPayWithCashapp) {
@ -405,6 +406,7 @@
<img style="cursor: pointer;" src="/resources/apple-pay.svg" height=55 (click)="moveToStep('applepay')">
}
</div>
}
</div>
}
</div>