sevago-sso-fe 1.0.53 → 1.0.54

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 CHANGED
@@ -13768,8 +13768,8 @@ const AppGrid = ({
13768
13768
  gap: gap2
13769
13769
  },
13770
13770
  children: visibleApps.map((app, index) => {
13771
- const appUrl = app.path[env];
13772
- const absoluteUrl = appUrl.startsWith("https://") ? appUrl : `${window.location.origin}${appUrl.startsWith("/") ? appUrl : `/${appUrl}`}`;
13771
+ const appUrl = app.path?.[env];
13772
+ const absoluteUrl = typeof appUrl === "string" ? appUrl.startsWith("https://") ? appUrl : `${window.location.origin}${appUrl.startsWith("/") ? appUrl : `/${appUrl}`}` : "#";
13773
13773
  return /* @__PURE__ */ jsxRuntime.jsx(
13774
13774
  "a",
13775
13775
  {