Skip to content

Commit

Permalink
Fixed: Login component naming in router
Browse files Browse the repository at this point in the history
  • Loading branch information
k2maan committed Dec 8, 2023
1 parent ce73e4f commit 925b768
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { showToast } from '@/utils'
import { translate } from '@/i18n'

import 'vue-router'
import { Login, useAuthStore } from '@hotwax/dxp-components';
import { DxpLogin, useAuthStore } from '@hotwax/dxp-components';
import { loader } from '@/user-utils';

// Defining types for the meta values
Expand Down Expand Up @@ -70,8 +70,8 @@ const routes: Array<RouteRecordRaw> = [
},
{
path: '/login',
name: 'Login',
component: Login,
name: 'DxpLogin',
component: DxpLogin,
beforeEnter: loginGuard
},
{
Expand Down

0 comments on commit 925b768

Please sign in to comment.