We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a1cca commit ff13573Copy full SHA for ff13573
src/app/modules/shared/interceptors/spinner.interceptor.ts
@@ -17,7 +17,7 @@ export class SpinnerInterceptor implements HttpInterceptor {
17
req: HttpRequest<any>,
18
next: HttpHandler
19
): Observable<HttpEvent<any>> {
20
- if (req.url.endsWith('recent')) {
+ if (req.url.endsWith('recent') || req.url.endsWith('login')) {
21
const spinnerSubscription: Subscription = this.spinnerOverlayService.spinner$.subscribe();
22
return next
23
.handle(req)
0 commit comments