From 221ec8cc6ba77c5020187e4563c597835273130a Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Mon, 28 Jan 2019 23:08:18 -0600 Subject: [PATCH] fixed a route pointing to nothing --- projects/sso/src/app/app-routing.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/sso/src/app/app-routing.module.ts b/projects/sso/src/app/app-routing.module.ts index ff00ed0..fee4d78 100644 --- a/projects/sso/src/app/app-routing.module.ts +++ b/projects/sso/src/app/app-routing.module.ts @@ -6,7 +6,7 @@ import { LogoutComponent } from './logout/logout.component'; import { PageNotFoundComponent } from 'page-not-found'; const routes: Routes = [ - { path: 'profile', component: LoginComponent }, + { path: 'login', component: LoginComponent }, { path: 'logout', component: LogoutComponent }, { path: '', redirectTo: '/login', pathMatch: 'full' }, { path: '**', component: PageNotFoundComponent }