Skip to content

Commit

Permalink
fix: missing translations
Browse files Browse the repository at this point in the history
  • Loading branch information
tonai committed Feb 4, 2025
1 parent dbf7083 commit 44b6891
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions assets/router/GroupApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<typeof routes>;
}
Expand All @@ -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 {
Expand Down

0 comments on commit 44b6891

Please sign in to comment.