Skip to content

Commit f402611

Browse files
test: TT-155 deleted two extra lines in sidebar
1 parent ef746cb commit f402611

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/app/modules/shared/components/sidebar/sidebar.component.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {NavigationStart, Router} from '@angular/router';
55
import {Observable} from 'rxjs';
66
import {filter} from 'rxjs/operators';
77
import { FeatureManagerService } from '../../feature-toggles/feature-toggle-manager.service';
8-
import { Store } from '@ngrx/store';
98

109
@Component({
1110
selector: 'app-sidebar',
@@ -21,8 +20,6 @@ export class SidebarComponent implements OnInit {
2120
private azureAdB2CService: AzureAdB2CService,
2221
private router: Router,
2322
private featureManagerService: FeatureManagerService,
24-
private store: Store,
25-
private bc2azure: AzureAdB2CService,
2623
) {
2724
this.navStart = this.router.events.pipe(
2825
filter(evt => evt instanceof NavigationStart)
@@ -37,9 +34,6 @@ export class SidebarComponent implements OnInit {
3734
this.navStart.subscribe(evt => {
3835
this.highlightMenuOption(evt.url);
3936
});
40-
41-
console.log(this.bc2azure.getUserId());
42-
4337
}
4438

4539
toggleSideBar() {

0 commit comments

Comments
 (0)