From 7269367cc20a126f0cf1dd9402a55510f01e4253 Mon Sep 17 00:00:00 2001 From: Eneko Nieto Date: Mon, 8 Feb 2021 00:06:30 +0100 Subject: [PATCH] Login fixed --- src/app/app-routing.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index ee00600..90a3e6b 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -8,7 +8,7 @@ import { TravelComponent } from './pages/travel/travel.component'; const routes: Routes = [ { path: '', - redirectTo: '/home', + redirectTo: 'home', pathMatch: 'full' }, { @@ -29,7 +29,7 @@ const routes: Routes = [ }, { path: '**', - redirectTo: '/home' + redirectTo: 'home' } ];