From 72fb351dcf099aef703f8f625e1b6c79c72eb364 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 10 Sep 2023 16:09:10 +0200 Subject: [PATCH] Integrated the Licenses page into the routes index.jsx --- src/common/routes/index.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/routes/index.jsx b/src/common/routes/index.jsx index be77956..f0261bc 100644 --- a/src/common/routes/index.jsx +++ b/src/common/routes/index.jsx @@ -11,12 +11,13 @@ import { } from "@mui/icons-material"; import Info from "@/states/Dashboard/pages/Info"; import Statistic from "@/states/Dashboard/pages/Statistic"; +import Licenses from "@/states/Dashboard/pages/Licenses"; export const routes = [ {path: "/", element: }, {path: "/support", element:

Support

}, {path: "/projects/:projectId/stats", element: }, - {path: "/projects/:projectId/licenses", element:

Lizenzen

}, + {path: "/projects/:projectId/licenses", element: }, {path: "/projects/:projectId/permissions", element:

Berechtigungen

}, {path: "/projects/:projectId/groups", element:

Gruppen

}, {path: "/projects/:projectId/meta", element:

Metadaten

},