odaptos_design_system 2.0.191 → 2.0.192

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.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.191",
2
+ "version": "2.0.192",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -46,8 +46,10 @@ export const PricingCard = ({
46
46
  4: cmsContent.ContactUs,
47
47
  };
48
48
 
49
+ console.log('yearlyPrice', yearlyPrice, typeof yearlyPrice);
50
+ console.log('monthlyPrice', monthlyPrice, typeof monthlyPrice);
49
51
  const monthlyPriceWithDiscount = Math.floor(Number(yearlyPrice) / 12);
50
-
52
+ console.log('monthlyPriceWithDiscount', monthlyPriceWithDiscount);
51
53
  const euroPrice = isYearly
52
54
  ? `(${monthlyPriceWithDiscount} ${currency})`
53
55
  : `(${yearlyPrice} ${currency})`;
@@ -55,6 +57,8 @@ export const PricingCard = ({
55
57
  ? `(${currency}${monthlyPriceWithDiscount} USD)`
56
58
  : `(${currency}${yearlyPrice} USD)`;
57
59
 
60
+ console.log('euroPrice', euroPrice);
61
+
58
62
  return (
59
63
  <div
60
64
  className={