Skip to content

Commit

Permalink
Merge pull request #11929 from cmgustavo/fix/wording-01
Browse files Browse the repository at this point in the history
Fixes wording
  • Loading branch information
JohnathanWhite authored Oct 13, 2021
2 parents 7380304 + 18c1f94 commit 68c6688
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/buy-crypto/crypto-offers/crypto-offers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ export class CryptoOffersPage {
this.amount < this.offers.simplex.amountLimits.min ||
this.amount > this.offers.simplex.amountLimits.max
) {
this.offers.simplex.outOfLimitMsg = `There is no Simplex's offer available, as the current purchase limits for this exchange must be between ${this.offers.simplex.amountLimits.min} ${this.fiatCurrency} and ${this.offers.simplex.amountLimits.max} ${this.fiatCurrency}`;
this.offers.simplex.outOfLimitMsg = `There are no Simplex offers available, as the current purchase limits for this exchange must be between ${this.offers.simplex.amountLimits.min} ${this.fiatCurrency} and ${this.offers.simplex.amountLimits.max} ${this.fiatCurrency}`;
return;
} else {
let paymentMethod: string[] = [];
Expand Down Expand Up @@ -498,7 +498,7 @@ export class CryptoOffersPage {
this.amount < this.offers.wyre.amountLimits.min ||
this.amount > this.offers.wyre.amountLimits.max
) {
this.offers.wyre.outOfLimitMsg = `There is no Wyre's offer available, as the current daily purchase limits for this exchange must be between ${this.offers.wyre.amountLimits.min} ${this.fiatCurrency} and ${this.offers.wyre.amountLimits.max} ${this.fiatCurrency}`;
this.offers.wyre.outOfLimitMsg = `There are no Wyre offers available, as the current daily purchase limits for this exchange must be between ${this.offers.wyre.amountLimits.min} ${this.fiatCurrency} and ${this.offers.wyre.amountLimits.max} ${this.fiatCurrency}`;
return;
} else {
this.walletProvider
Expand Down

0 comments on commit 68c6688

Please sign in to comment.