intelica-library-ui 0.1.210 → 0.1.212

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -488,9 +488,11 @@ const RefreshTokenInterceptor = (req, next) => {
488
488
  ? ""
489
489
  : getCookie(authenticationClientID) ?? "",
490
490
  };
491
+ console.log(req.url);
491
492
  if (!req.url.includes("ValidateToken") &&
492
493
  !req.url.includes("environment.json") &&
493
- !req.url.includes("GetAuthenticationFromCache"))
494
+ !req.url.includes("GetAuthenticationFromCache") &&
495
+ !req.url.includes("SetCookies"))
494
496
  return from(httpClient.post(path, validateTokenQuery)).pipe(switchMap((response) => {
495
497
  if (response.expired) {
496
498
  Cookies.remove("token", cookieAttributesGeneral);