diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index ce27b6b..7e0c37c 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -7,7 +7,8 @@ import { UserstoryListComponent } from './userstory-list/userstory-list.componen const routes: Routes = [ { path: 'tasks', component: TaskListComponent }, - { path: 'userstories', component: UserstoryListComponent } + { path: 'userstories', component: UserstoryListComponent }, + { path: '', redirectTo: '/tasks', pathMatch: 'full' }, ]; @NgModule({