sevago-sso-fe 1.0.52 → 1.0.53

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
@@ -14188,9 +14188,11 @@ const SystemMonitorScreen = ({
14188
14188
  /* @__PURE__ */ jsx(MotionBox, { preset: "tabContent", children: /* @__PURE__ */ jsx(
14189
14189
  AppGrid,
14190
14190
  {
14191
- apps: Object.values(APP_OBJ).filter(
14192
- (e) => !blacklist?.includes(e.path[env])
14193
- ),
14191
+ apps: Object.values(APP_OBJ).filter((e) => {
14192
+ const isBlacklisted = !!blacklist?.includes(e.path[env]);
14193
+ const isInSelectedGroup = tab === AppGroup.ALL ? true : e.group === tab;
14194
+ return !isBlacklisted && isInSelectedGroup;
14195
+ }),
14194
14196
  iconSize: 80,
14195
14197
  iconRadius: 7,
14196
14198
  gap: PADDING_GAP_TAB,