@bigbinary/neeto-team-members-frontend 2.13.6 → 2.13.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.
@@ -130,7 +130,7 @@
130
130
  "myProfile": "My Profile",
131
131
  "mmddyy": "MM/DD/YYYY",
132
132
  "ddmmyy": "DD/MM/YYYY",
133
- "timeZoneOption": "{{timeZone}} - {{currentTime}}",
133
+ "timeZoneOption": "{{timeZone, anyCase}} - {{currentTime}}",
134
134
  "toUpdateProfile": "To update more information visit:",
135
135
  "neetoAuth": "neetoAuth"
136
136
  },
package/dist/index.cjs.js CHANGED
@@ -17,10 +17,10 @@ var reactUtils = require('@bigbinary/neeto-commons-frontend/react-utils');
17
17
  var reactQuery = require('react-query');
18
18
  var axios = require('axios');
19
19
  var yup = require('yup');
20
+ var ramda = require('ramda');
20
21
  var withImmutableActions = require('@bigbinary/neeto-commons-frontend/react-utils/withImmutableActions');
21
22
  var zustand = require('zustand');
22
23
  var shallow = require('zustand/shallow');
23
- var ramda = require('ramda');
24
24
  var devtools = require('react-query/devtools');
25
25
  var NeetoHeader = require('@bigbinary/neeto-molecules/Header');
26
26
  var formik$1 = require('formik');
@@ -326,7 +326,7 @@ var useCountries = function useCountries(user) {
326
326
  var currentTime = currentTimeInUTC.toLocaleString("en-US", options);
327
327
  return {
328
328
  label: i18next.t("neetoTeamMembers.profile.common.timeZoneOption", {
329
- timeZone: timeZone === null || timeZone === void 0 ? void 0 : timeZone.name,
329
+ timeZone: ramda.replace("_", " ", timeZone === null || timeZone === void 0 ? void 0 : timeZone.name),
330
330
  currentTime: currentTime
331
331
  }),
332
332
  value: timeZone === null || timeZone === void 0 ? void 0 : timeZone.id,