diff --git a/src/_digifi/layout/components/header/header-menus/MenuInner.tsx b/src/_digifi/layout/components/header/header-menus/MenuInner.tsx
index 853da62..d288812 100644
--- a/src/_digifi/layout/components/header/header-menus/MenuInner.tsx
+++ b/src/_digifi/layout/components/header/header-menus/MenuInner.tsx
@@ -2,12 +2,17 @@ import {useIntl} from 'react-intl'
import {MenuItem} from './MenuItem'
import {MenuInnerWithSub} from './MenuInnerWithSub'
import {MegaMenu} from './MegaMenu'
+import { useLocation } from 'react-router-dom'
export function MenuInner() {
const intl = useIntl()
+ const {pathname} = useLocation()
+ const isHelpPath = pathname == '/help'
return (
<>
-
+ {/* */}
+
+
{/* */}
- Help
-
+
+
+
Help
+
+
)
}
diff --git a/src/app/routing/AppRoutes.tsx b/src/app/routing/AppRoutes.tsx
index 726a838..2075ee3 100644
--- a/src/app/routing/AppRoutes.tsx
+++ b/src/app/routing/AppRoutes.tsx
@@ -11,7 +11,6 @@ import {PrivateRoutes} from './PrivateRoutes'
import {ErrorsPage} from '../modules/errors/ErrorsPage'
import {Logout, AuthPage, useAuth} from '../modules/auth'
import {App} from '../App'
-import HelpPage from '../modules/help/HelpPage'
/**
* Base URL of the website.
@@ -27,7 +26,6 @@ const AppRoutes: FC = () => {
}>
} />
- } />
} />
{currentUser ? (
<>
diff --git a/src/app/routing/PrivateRoutes.tsx b/src/app/routing/PrivateRoutes.tsx
index 5f679d3..8bba4a3 100644
--- a/src/app/routing/PrivateRoutes.tsx
+++ b/src/app/routing/PrivateRoutes.tsx
@@ -6,6 +6,7 @@ import { DashboardWrapper } from "../pages/dashboard/DashboardWrapper";
// import {MenuTestPage} from '../pages/MenuTestPage'
import { getCSSVariableValue } from "../../_digifi/assets/ts/_utils";
import { WithChildren } from "../../_digifi/helpers";
+import HelpPage from "../modules/help/HelpPage";
// import BuilderPageWrapper from '../pages/layout-builder/BuilderPageWrapper'
const PrivateRoutes = () => {
@@ -98,6 +99,7 @@ const PrivateRoutes = () => {
}
/>
+ } />
{/* Page Not Found */}
} />