diff --git a/client/src/app/core/interceptors/loading.interceptor.ts b/client/src/app/core/interceptors/loading.interceptor.ts index 8325091..f294675 100644 --- a/client/src/app/core/interceptors/loading.interceptor.ts +++ b/client/src/app/core/interceptors/loading.interceptor.ts @@ -12,6 +12,10 @@ export class LoadingInterceptor implements HttpInterceptor { return next.handle(req); } + if(req.method === 'DELETE'){ + return next.handle(req); + } + if(req.url.includes('emailexists')){ return next.handle(req); }