intelica-library-ui 0.1.210 → 0.1.211

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.
@@ -490,7 +490,8 @@ const RefreshTokenInterceptor = (req, next) => {
490
490
  };
491
491
  if (!req.url.includes("ValidateToken") &&
492
492
  !req.url.includes("environment.json") &&
493
- !req.url.includes("GetAuthenticationFromCache"))
493
+ !req.url.includes("GetAuthenticationFromCache") &&
494
+ !req.url.includes("SetCookies"))
494
495
  return from(httpClient.post(path, validateTokenQuery)).pipe(switchMap((response) => {
495
496
  if (response.expired) {
496
497
  Cookies.remove("token", cookieAttributesGeneral);