@infrab4a/connect-angular 4.12.1-beta.6 → 4.12.1-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1095,9 +1095,9 @@ class CouponService {
1095
1095
  const hasMinSubTotal = await this.hasMinSubTotal(coupon, checkout);
1096
1096
  if (!hasMinSubTotal) {
1097
1097
  if (coupon.productsCategories?.length) {
1098
- throw `Valor mínimo de ${Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' }).format(coupon.minSubTotalValue)} não atingido na(s) categoria(s)/marca(s) elegiveis para o desconto.`;
1098
+ throw `Valor mínimo de ${Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' }).format(coupon.minSubTotalValue)} não atingido na(s) categoria(s) elegíveis para o desconto.`;
1099
1099
  }
1100
- throw `Valor mínimo de ${Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' }).format(coupon.minSubTotalValue)} não atingido`;
1100
+ throw `Valor mínimo de ${Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' }).format(coupon.minSubTotalValue)} não atingido.`;
1101
1101
  }
1102
1102
  return coupon;
1103
1103
  }