remove unused imports

This commit is contained in:
Peter Maquiran
2022-10-12 17:01:09 +01:00
parent de16765d97
commit 959bb53b82
59 changed files with 116 additions and 277 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import { Component, OnInit } from '@angular/core';
import { LoginUserRespose } from 'src/app/models/user.model';
import { AuthService } from 'src/app/services/auth.service';
import { SessionStore } from 'src/app/store/session.service';
@Component({
selector: 'app-header-pr',
@@ -13,7 +14,7 @@ export class HeaderPrPage implements OnInit {
constructor(authService: AuthService) {
this.loggeduser = authService.ValidatedUser;
this.loggeduser = SessionStore.user;
}
ngOnInit() {