diff --git a/src/components/apps/index.ts b/src/components/apps/index.ts index b109d68..1ca9e2f 100644 --- a/src/components/apps/index.ts +++ b/src/components/apps/index.ts @@ -1,7 +1,21 @@ import StoresApp from "./stores"; import JobsApp from "./jobs"; +import { ApplicationType } from "@prisma/client"; export default { - stores: StoresApp, - jobs: JobsApp, + stores: { + app: StoresApp, + type: ApplicationType.STORES, + description: 'Stores locator' + }, + jobs: { + app: JobsApp, + type: ApplicationType.JOBS, + description: 'Jobs locator' + }, + ecommerce: { + app: null, + type: ApplicationType.ECOMMERCE, + description: 'Ecommerce locator' + } }; diff --git a/src/components/common/page-menu.tsx b/src/components/common/page-menu.tsx index 8bf75d1..5879153 100644 --- a/src/components/common/page-menu.tsx +++ b/src/components/common/page-menu.tsx @@ -38,7 +38,6 @@ export default function PageMenu(props: PageMenuProps) { )}