Skip to content

Commit ff13573

Browse files
authored
fix: TTA-214-add-loader-to-the-log-in-button (#947)
Co-authored-by: Nicole Garcia <nicolsss>
1 parent 90a1cca commit ff13573

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/shared/interceptors/spinner.interceptor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class SpinnerInterceptor implements HttpInterceptor {
1717
req: HttpRequest<any>,
1818
next: HttpHandler
1919
): Observable<HttpEvent<any>> {
20-
if (req.url.endsWith('recent')) {
20+
if (req.url.endsWith('recent') || req.url.endsWith('login')) {
2121
const spinnerSubscription: Subscription = this.spinnerOverlayService.spinner$.subscribe();
2222
return next
2323
.handle(req)

0 commit comments

Comments
 (0)