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.esm.js CHANGED
@@ -13750,8 +13750,8 @@ const AppGrid = ({
13750
13750
  gap: gap2
13751
13751
  },
13752
13752
  children: visibleApps.map((app, index) => {
13753
- const appUrl = app.path[env];
13754
- const absoluteUrl = appUrl.startsWith("https://") ? appUrl : `${window.location.origin}${appUrl.startsWith("/") ? appUrl : `/${appUrl}`}`;
13753
+ const appUrl = app.path?.[env];
13754
+ const absoluteUrl = typeof appUrl === "string" ? appUrl.startsWith("https://") ? appUrl : `${window.location.origin}${appUrl.startsWith("/") ? appUrl : `/${appUrl}`}` : "#";
13755
13755
  return /* @__PURE__ */ jsx(
13756
13756
  "a",
13757
13757
  {