From 221bb2a27c473b1daaa2bb3a6319d04a21045250 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Mon, 6 Nov 2023 18:04:35 -0700 Subject: [PATCH] move other route 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 326d2444..331d314b 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -79,14 +79,6 @@ const routes: Array = [ component: () => import(/* webpackChunkName: "contacts" */ "../views/ContactsView.vue"), }, - { - path: "/scan-contact", - name: "scan-contact", - component: () => - import( - /* webpackChunkName: "scan-contact" */ "../views/ContactScanView.vue" - ), - }, { path: "/discover", name: "discover", @@ -168,6 +160,14 @@ const routes: Array = [ import(/* webpackChunkName: "projects" */ "../views/ProjectsView.vue"), beforeEnter: enterOrStart, }, + { + path: "/scan-contact", + name: "scan-contact", + component: () => + import( + /* webpackChunkName: "scan-contact" */ "../views/ContactScanView.vue" + ), + }, { path: "/seed-backup", name: "seed-backup",