diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 818faed..7ff8d3e 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -21,7 +21,7 @@ import {UnavailableComponent} from './pages/unavailable/unavailable.component'; import {NotfoundComponent} from './pages/notfound/notfound.component'; const routes: Routes = [ - {path: '', redirectTo: "/account", pathMatch: 'full'}, + {path: '', redirectTo: "/account/info", pathMatch: 'full'}, {path: 'imprint', component: ImprintComponent, canActivate: [AuthUpdateGuard]}, {path: 'privacy-policy', component: PrivacyPolicyComponent, canActivate: [AuthUpdateGuard]}, {path: 'terms-of-service', component: TermsOfServiceComponent, canActivate: [AuthUpdateGuard]},