Login fixed

This commit is contained in:
Eneko Nieto
2021-02-08 00:06:30 +01:00
parent 386ab547bd
commit 7269367cc2

View File

@@ -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'
}
];