From 44b68910bd29655b05b459c8a021c31dd281afe9 Mon Sep 17 00:00:00 2001 From: Tony CABAYE Date: Tue, 4 Feb 2025 16:27:10 +0100 Subject: [PATCH] fix: missing translations --- assets/router/GroupApp.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/router/GroupApp.tsx b/assets/router/GroupApp.tsx index 869a24ce..d0718a47 100644 --- a/assets/router/GroupApp.tsx +++ b/assets/router/GroupApp.tsx @@ -38,8 +38,6 @@ const CommunityList = lazy(() => import("../entrepot/pages/communities/Community const DashboardPro = lazy(() => import("../entrepot/pages/dashboard/DashboardPro")); -const baseDatastoreNavItems = datastoreNavItems(); - interface IGroupAppProps { route: Route; } @@ -48,6 +46,7 @@ function GroupApp(props: IGroupAppProps) { const { route } = props; const content: { render: JSX.Element; layoutProps?: AppLayoutProps } | undefined = useMemo(() => { + const baseDatastoreNavItems = datastoreNavItems(); switch (route.name) { case "home": return {