Skip to content

Commit

Permalink
Merge pull request #11970 from cmgustavo/bug/amount-no-rate-coin-01
Browse files Browse the repository at this point in the history
Fixed: filtered list of coin availables by rates
  • Loading branch information
Gamboster authored Nov 29, 2021
2 parents 8900c6c + b6bcf3f commit d643c70
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/pages/send/amount/amount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,12 @@ export class AmountPage {
this.checkAmountForBitpaycard(result);
} else {
this.alternativeAmount = result ? 'N/A' : null;
this.allowSend = false;
if (
this.rateProvider.isCoinAvailable(
this.availableUnits[this.unitIndex].id
)
)
this.allowSend = false;
}
} else {
this.alternativeAmount = this.filterProvider.formatFiatAmount(
Expand Down

0 comments on commit d643c70

Please sign in to comment.