diff --git a/src/app/app.component.ts b/src/app/app.component.ts index baf9772..5e7d082 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -61,7 +61,7 @@ export class AppComponent implements OnInit{ this.router.events.forEach((event) => { if(event instanceof RoutesRecognized) { HelperFunctions.scroll(); - if(event.url === '/') { + if(event.url === '/' || event.url.indexOf('/user-info') !== -1) { this.wellcome = true; } else { this.wellcome = false;