intelica-library-ui 0.1.124 → 0.1.125

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.
@@ -397,6 +397,7 @@ const ErrorInterceptor = (req, next) => {
397
397
  HeaderSettings["ClientID"] = configService.environment?.clientID ?? "";
398
398
  HeaderSettings["PageRoot"] = commonFeatureFlagService.GetPageRoot();
399
399
  HeaderSettings["LanguageCode"] = getCookie("language") ?? "";
400
+ HeaderSettings["Environment"] = configService.environment?.environment ?? "";
400
401
  HeaderSettings["Access"] = authenticationClientID == "" ? "" : getCookie(authenticationClientID) ?? "";
401
402
  }
402
403
  let _request = req.clone({ headers: new HttpHeaders(HeaderSettings) });