diff --git a/apps/wizarr-frontend/src/modules/home/router/index.ts b/apps/wizarr-frontend/src/modules/home/router/index.ts index cb201995..58794629 100644 --- a/apps/wizarr-frontend/src/modules/home/router/index.ts +++ b/apps/wizarr-frontend/src/modules/home/router/index.ts @@ -14,12 +14,12 @@ const routes: Readonly = [ // TODO: Remove this route after a few versions to allow users to get used to the new route { path: '/j/:invite', - name: 'invite', + name: 'deprecated-invite', component: () => import('../views/Home.vue'), }, { path: '/join', - name: 'home', + name: 'deprecated-join', component: () => import('../views/Home.vue'), }, ]; diff --git a/apps/wizarr-frontend/src/modules/home/views/Home.vue b/apps/wizarr-frontend/src/modules/home/views/Home.vue index 624ba34b..5dd6da33 100644 --- a/apps/wizarr-frontend/src/modules/home/views/Home.vue +++ b/apps/wizarr-frontend/src/modules/home/views/Home.vue @@ -92,7 +92,7 @@ export default defineComponent({ activeStep: 0, views: [ { - name: 'join', + name: 'home', title: this.__('Please enter your invite code:'), component: () => import('../pages/JoinForm.vue'), },