From f88781bb7e782e30fcbea3f839f4957ceb0f5caa Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Fri, 3 Sep 2021 02:16:51 +0300 Subject: [PATCH] Run linter. --- src/app/_interceptors/http-config.interceptor.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/_interceptors/http-config.interceptor.ts b/src/app/_interceptors/http-config.interceptor.ts index 304ba9e..f14c5e3 100644 --- a/src/app/_interceptors/http-config.interceptor.ts +++ b/src/app/_interceptors/http-config.interceptor.ts @@ -20,7 +20,10 @@ export class HttpConfigInterceptor implements HttpInterceptor { * @returns The forwarded request. */ intercept(request: HttpRequest, next: HttpHandler): Observable> { - if (request.url.startsWith(environment.cicMetaUrl) || request.url.startsWith(environment.cicUssdUrl)) { + if ( + request.url.startsWith(environment.cicMetaUrl) || + request.url.startsWith(environment.cicUssdUrl) + ) { const token: string = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN')); if (token) {