From e6e10c835ed2b5643d3f3045cdef77bc59579032 Mon Sep 17 00:00:00 2001 From: Peter Bastiani Date: Wed, 8 Feb 2023 11:36:54 +0100 Subject: [PATCH] AW-4641 Cleanup --- projects/common/src/fm/components/has-role/has-role.directive.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/projects/common/src/fm/components/has-role/has-role.directive.ts b/projects/common/src/fm/components/has-role/has-role.directive.ts index bd14c00..1eddac5 100644 --- a/projects/common/src/fm/components/has-role/has-role.directive.ts +++ b/projects/common/src/fm/components/has-role/has-role.directive.ts @@ -17,7 +17,6 @@ export class HasRoleDirective implements OnInit, OnDestroy{ private sub: Subscription; ngOnInit() { this.sub = this.user$.subscribe((user) => { - console.log('fmHasRole', this.role); if (user && user.claims[this.roleClaim]?.includes(this.role)) { this.viewContainerRef$.createEmbeddedView(this.templateRef$); this.hasView=true;