Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: TTA-214-add-loader-to-the-log-in-button
  • Loading branch information
Nicole Garcia committed Oct 31, 2022
commit 435461773e2b588779a2e3a9e470d2ef33380732
2 changes: 1 addition & 1 deletion src/app/modules/shared/interceptors/spinner.interceptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class SpinnerInterceptor implements HttpInterceptor {
req: HttpRequest<any>,
next: HttpHandler
): Observable<HttpEvent<any>> {
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)
Expand Down