diff --git a/editor.planx.uk/src/components/EditorNavMenu.tsx b/editor.planx.uk/src/components/EditorNavMenu.tsx index 0471ebdc55..ecc8216885 100644 --- a/editor.planx.uk/src/components/EditorNavMenu.tsx +++ b/editor.planx.uk/src/components/EditorNavMenu.tsx @@ -116,18 +116,18 @@ function EditorNavMenu() { route: "/", accessibleBy: ["platformAdmin", "teamEditor", "teamViewer"], }, - { - title: "Admin panel", - Icon: AdminPanelSettingsIcon, - route: "admin-panel", - accessibleBy: ["platformAdmin"], - }, { title: "Global settings", Icon: TuneIcon, route: "global-settings", accessibleBy: ["platformAdmin"], }, + { + title: "Admin panel", + Icon: AdminPanelSettingsIcon, + route: "admin-panel", + accessibleBy: ["platformAdmin"], + }, ]; const teamLayoutRoutes: Route[] = [ @@ -138,9 +138,9 @@ function EditorNavMenu() { accessibleBy: ["platformAdmin", "teamEditor", "teamViewer"], }, { - title: "Team members", - Icon: GroupIcon, - route: `/${teamSlug}/members`, + title: "Settings", + Icon: TuneIcon, + route: `/${teamSlug}/general-settings`, accessibleBy: ["platformAdmin", "teamEditor"], }, { @@ -150,9 +150,9 @@ function EditorNavMenu() { accessibleBy: ["platformAdmin", "teamEditor"], }, { - title: "Settings", - Icon: TuneIcon, - route: `/${teamSlug}/general-settings`, + title: "Team members", + Icon: GroupIcon, + route: `/${teamSlug}/members`, accessibleBy: ["platformAdmin", "teamEditor"], }, ];