diff --git a/src/app/loading/loading.interceptor.ts b/src/app/loading/loading.interceptor.ts index edde4e8..7326359 100644 --- a/src/app/loading/loading.interceptor.ts +++ b/src/app/loading/loading.interceptor.ts @@ -6,14 +6,14 @@ import {SkipLoading} from "./skip-loading.component"; export const loadingInterceptor: HttpInterceptorFn = (req: HttpRequest, next: HttpHandlerFn) => { - const loadingService = inject(LoadingService); - // Check for a custom attribute to avoid showing loading spinner if (req.context.get(SkipLoading)) { // Pass the request directly to the next handler return next(req); } - + + const loadingService = inject(LoadingService); + // Turn on the loading spinner loadingService.loadingOn();