From 2961e29831376aa12110ad1c2104873ab282dd0b Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Mon, 6 Nov 2023 09:09:34 -0700 Subject: [PATCH] move routes into alphabetical order (no logic changes) --- src/router/index.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/router/index.ts b/src/router/index.ts index c06a5dc6c..326d2444c 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -99,6 +99,14 @@ const routes: Array = [ component: () => import(/* webpackChunkName: "help" */ "../views/HelpView.vue"), }, + { + path: "/identity-switcher", + name: "identity-switcher", + component: () => + import( + /* webpackChunkName: "identity-switcher" */ "../views/IdentitySwitcherView.vue" + ), + }, { path: "/import-account", name: "import-account", @@ -147,14 +155,6 @@ const routes: Array = [ /* webpackChunkName: "new-identifier" */ "../views/NewIdentifierView.vue" ), }, - { - path: "/identity-switcher", - name: "identity-switcher", - component: () => - import( - /* webpackChunkName: "identity-switcher" */ "../views/IdentitySwitcherView.vue" - ), - }, { path: "/project", name: "project",