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.cjs.js CHANGED
@@ -14206,9 +14206,11 @@ const SystemMonitorScreen = ({
14206
14206
  /* @__PURE__ */ jsxRuntime.jsx(MotionBox, { preset: "tabContent", children: /* @__PURE__ */ jsxRuntime.jsx(
14207
14207
  AppGrid,
14208
14208
  {
14209
- apps: Object.values(APP_OBJ).filter(
14210
- (e) => !blacklist?.includes(e.path[env])
14211
- ),
14209
+ apps: Object.values(APP_OBJ).filter((e) => {
14210
+ const isBlacklisted = !!blacklist?.includes(e.path[env]);
14211
+ const isInSelectedGroup = tab === AppGroup.ALL ? true : e.group === tab;
14212
+ return !isBlacklisted && isInSelectedGroup;
14213
+ }),
14212
14214
  iconSize: 80,
14213
14215
  iconRadius: 7,
14214
14216
  gap: PADDING_GAP_TAB,