;
+ isNotAuthBlocking$: Observable;
constructor(
@Inject(NativeWindowService) private _window: NativeWindowRef,
@@ -94,7 +94,7 @@ export class AppComponent implements OnInit, AfterViewInit {
}
ngOnInit() {
- this.isAuthBlocking$ = this.store.pipe(select(isAuthenticationBlocking)).pipe(
+ this.isNotAuthBlocking$ = this.store.pipe(select(isAuthenticationBlocking)).pipe(
map((isBlocking: boolean) => isBlocking === false),
distinctUntilChanged()
);