diff --git a/src/app/modules/shared/interceptors/spinner.interceptor.ts b/src/app/modules/shared/interceptors/spinner.interceptor.ts index a6923414..2cf717ce 100644 --- a/src/app/modules/shared/interceptors/spinner.interceptor.ts +++ b/src/app/modules/shared/interceptors/spinner.interceptor.ts @@ -17,7 +17,7 @@ export class SpinnerInterceptor implements HttpInterceptor { req: HttpRequest, next: HttpHandler ): Observable> { - if (req.url.endsWith('recent')) { + if (req.url.endsWith('recent') || req.url.endsWith('login')) { const spinnerSubscription: Subscription = this.spinnerOverlayService.spinner$.subscribe(); return next .handle(req)