diff --git a/src/components/Header/HeaderLIT.tsx b/src/components/Header/HeaderLIT.tsx index 7a4cc75..a6c4964 100644 --- a/src/components/Header/HeaderLIT.tsx +++ b/src/components/Header/HeaderLIT.tsx @@ -6,6 +6,7 @@ import Gravatar from 'react-gravatar'; import { Link, useLocation } from 'react-router-dom'; import clsx from 'clsx'; import { useApps } from 'src/services/apps'; +import { UTILITY_APPS } from 'src/modules/dashboard/consts'; const navigation = [ { name: '', to: '/users', requiresAdmin: true }, @@ -64,21 +65,23 @@ const HeaderLIT: React.FC = () => {
{/* Current: "border-primary-500 text-gray-900", Default: "border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700" */} - {apps.map((app) => ( - - {app.name} - - ))} + {apps + .filter((app) => UTILITY_APPS.indexOf(app.slug) === -1) + .map((app) => ( + + {app.name} + + ))} {/* {navigationItems.map((item) => (