sixseconds-modules 1.6.158 → 1.6.161
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/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -6227,7 +6227,7 @@ ZodEnum.create;
|
|
|
6227
6227
|
ZodPromise.create;
|
|
6228
6228
|
ZodOptional.create;
|
|
6229
6229
|
ZodNullable.create;
|
|
6230
|
-
const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "
|
|
6230
|
+
const __vite_import_meta_env__ = { "BASE_URL": "/", "DEV": false, "MODE": "production", "PROD": true, "SSR": false, "VITE_MODULES_CARDS_ADMIN_FRONTEND_BASE_URL": "https://admin-cards.6seconds.org", "VITE_MODULES_CARDS_HOME_FRONTEND_BASE_URL": "https://cards.6seconds.org", "VITE_MODULES_CERT_FRONTEND_BASE_URL": "https://cert.6seconds.org", "VITE_MODULES_ENV": "prod", "VITE_MODULES_EVENTS_FRONTEND_BASE_URL": "https://events.6seconds.org", "VITE_MODULES_SSO_BACKEND_BASE_URL": "https://ssoapi.6seconds.org", "VITE_MODULES_SSO_FRONTEND_BASE_URL": "https://sso.6seconds.org", "VITE_MODULES_TOOLS_FRONTEND_BASE_URL": "https://newtools.6seconds.org" };
|
|
6231
6231
|
const env = createEnv({
|
|
6232
6232
|
client: {
|
|
6233
6233
|
VITE_MODULES_ENV: stringType()
|
|
@@ -14360,7 +14360,7 @@ const UserProfile = ({ t: t2, userData, setInitialState, extraMenuOptions, route
|
|
|
14360
14360
|
zIndex: "99999999 !important"
|
|
14361
14361
|
},
|
|
14362
14362
|
children: [
|
|
14363
|
-
/* @__PURE__ */ jsx(Avatar, { src: userData?.userprofile, sx: { width: "55px", height: "55px" }, children: userData?.fullName.trim().split(/\s+/).map((part) => part[0]
|
|
14363
|
+
/* @__PURE__ */ jsx(Avatar, { src: userData?.userprofile, sx: { width: "55px", height: "55px" }, children: (userData?.fullName || "").trim().split(/\s+/).filter(Boolean).map((part) => part[0]?.toUpperCase()).join("") || "" }),
|
|
14364
14364
|
/* @__PURE__ */ jsxs(
|
|
14365
14365
|
Box,
|
|
14366
14366
|
{
|