@open-rlb/ng-app 3.1.31 → 3.1.33

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.
@@ -1542,6 +1542,10 @@ class AuthenticationService {
1542
1542
  currentProvider: authenticatedConfig.configId
1543
1543
  }));
1544
1544
  }
1545
+ else {
1546
+ this.login();
1547
+ return EMPTY;
1548
+ }
1545
1549
  // SignalStore methods can trigger the API call
1546
1550
  return this.aclStore.loadACL().pipe(tap(() => this.handleRedirect()), map(() => responses));
1547
1551
  }));
@@ -1690,7 +1694,7 @@ class CompanyInterceptor {
1690
1694
  const storeKey = mapping[key];
1691
1695
  const value = data?.[storeKey];
1692
1696
  if (!!value) {
1693
- params = params.set(key, value);
1697
+ params = params.set(storeKey, value);
1694
1698
  }
1695
1699
  }
1696
1700
  ;