@pushwoosh/dumb-components 1.1.120 → 1.1.121

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.
@@ -65,7 +65,7 @@ export const differenceInDays = (ds1, ds2) => {
65
65
  };
66
66
  export const monthName = (month, monthFormat = 'long') => {
67
67
  const date = new Date(2023, month - 1, 1);
68
- return date.toLocaleString('default', {
68
+ return date.toLocaleString('en-US', {
69
69
  month: monthFormat
70
70
  });
71
71
  };
@@ -33,7 +33,7 @@ export const differenceInDays = (d1, d2) => {
33
33
  };
34
34
  export const monthName = (month, monthFormat = 'long') => {
35
35
  const date = new Date(2023, month - 1, 1);
36
- return date.toLocaleString('default', {
36
+ return date.toLocaleString('en-US', {
37
37
  month: monthFormat
38
38
  });
39
39
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/dumb-components",
3
- "version": "1.1.120",
3
+ "version": "1.1.121",
4
4
  "description": "React components to build Pushwoosh products",
5
5
  "main": "index.js",
6
6
  "module": "index.js",