Skip to content

Commit 1e23750

Browse files
committed
hot-fix: TTA-666 injectTokenInterceptor
injectTokenInterceptor now takes 2 args instead of 3 the last one wasn't used
1 parent 60bf73c commit 1e23750

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/shared/interceptors/inject.token.interceptor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { Router } from '@angular/router';
1919
@Injectable()
2020
export class InjectTokenInterceptor implements HttpInterceptor {
2121
isProduction = environment.production === EnvironmentType.TT_PROD_LEGACY;
22-
constructor(private azureAdB2CService: AzureAdB2CService, private loginService: LoginService, private router: Router) { }
22+
constructor(private azureAdB2CService: AzureAdB2CService, private loginService: LoginService) { }
2323

2424
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
2525
if (request.url.startsWith(environment.timeTrackerApiUrl)) {

0 commit comments

Comments
 (0)