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) {