From 721a361b5b555756cfbe42f13897647432c43ce3 Mon Sep 17 00:00:00 2001 From: Nevio Di Gennaro Date: Tue, 19 Nov 2024 11:01:31 +0100 Subject: [PATCH] remove window import and use normal window instead --- .../application-top-bar/application-top-bar.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/application-top-bar/application-top-bar.component.ts b/frontend/src/app/components/application-top-bar/application-top-bar.component.ts index b4e5d68af8..557fe17b84 100644 --- a/frontend/src/app/components/application-top-bar/application-top-bar.component.ts +++ b/frontend/src/app/components/application-top-bar/application-top-bar.component.ts @@ -1,6 +1,6 @@ import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core'; import { OAuthService } from 'angular-oauth2-oidc'; -import { BehaviorSubject, Subscription, window } from 'rxjs'; +import { BehaviorSubject, Subscription } from 'rxjs'; import { ConfigService } from '../../services/config.service'; import { NavigationEnd, Router } from '@angular/router'; import { UserService } from '../../services/user.service';