@frontegg/redux-store 5.4.0 → 5.5.0
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.
- package/auth/index.js +1 -1
- package/node/auth/index.js +1 -1
- package/package.json +1 -1
package/auth/index.js
CHANGED
|
@@ -1768,7 +1768,7 @@ function* loadSaml() {
|
|
|
1768
1768
|
function* loadSSOConfigurationsV2() {
|
|
1769
1769
|
try {
|
|
1770
1770
|
yield put(actions.setSSOLoader({ key: SSOStateKeys.LOAD_SSO_CONFIGURATIONS, value: true }));
|
|
1771
|
-
const [oidcConfiguration, samlMetadata] = yield all([loadOidc, loadSaml]);
|
|
1771
|
+
const [oidcConfiguration, samlMetadata] = yield all([call(loadOidc), call(loadSaml)]);
|
|
1772
1772
|
const ssoConfigurations = yield call(api.auth.getSSOConfigurations);
|
|
1773
1773
|
yield put(actions.setSSOState({
|
|
1774
1774
|
ssoConfigurations,
|
package/node/auth/index.js
CHANGED
|
@@ -1770,7 +1770,7 @@ function* loadSaml() {
|
|
|
1770
1770
|
function* loadSSOConfigurationsV2() {
|
|
1771
1771
|
try {
|
|
1772
1772
|
yield effects.put(actions.setSSOLoader({ key: exports.SSOStateKeys.LOAD_SSO_CONFIGURATIONS, value: true }));
|
|
1773
|
-
const [oidcConfiguration, samlMetadata] = yield effects.all([loadOidc, loadSaml]);
|
|
1773
|
+
const [oidcConfiguration, samlMetadata] = yield effects.all([effects.call(loadOidc), effects.call(loadSaml)]);
|
|
1774
1774
|
const ssoConfigurations = yield effects.call(restApi.api.auth.getSSOConfigurations);
|
|
1775
1775
|
yield effects.put(actions.setSSOState({
|
|
1776
1776
|
ssoConfigurations,
|