@open-rlb/ng-app 3.1.115 → 3.1.116

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.
@@ -1722,7 +1722,6 @@ class CompanyInterceptor {
1722
1722
  this.config = inject(RLB_CFG);
1723
1723
  }
1724
1724
  intercept(req, next) {
1725
- console.log('HttpInterceptor');
1726
1725
  const authConfig = this.config.auth;
1727
1726
  const isAllowed = authConfig?.allowedUrls?.some(url => req.url.includes(url));
1728
1727
  if (!isAllowed || !authConfig?.enableCompanyInterceptor) {
@@ -1739,7 +1738,6 @@ class CompanyInterceptor {
1739
1738
  params = params.set(storeKey, value);
1740
1739
  }
1741
1740
  }
1742
- ;
1743
1741
  const clonedReq = req.clone({ params });
1744
1742
  return next.handle(clonedReq);
1745
1743
  }