From 5fbfb8efe54f2f19d0f74da3ac6fcdc52435e4d5 Mon Sep 17 00:00:00 2001 From: Charles Showalter Date: Tue, 31 May 2022 17:49:04 -0700 Subject: [PATCH] Removed intercepter for DELETE --- client/src/app/core/interceptors/loading.interceptor.ts | 4 ++++ 1 file changed, 4 insertions(+) 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); }