@frontegg/redux-store 6.93.0-alpha.0 → 6.93.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/LoginState/saga.js +1 -0
- package/index.js +1 -1
- package/node/auth/LoginState/saga.js +1 -0
- package/node/index.js +1 -1
- package/package.json +1 -1
package/auth/LoginState/saga.js
CHANGED
|
@@ -541,6 +541,7 @@ function* requestAuthorizeSSR({
|
|
|
541
541
|
calls.push(call(loadVendorPublicInfo));
|
|
542
542
|
calls.push(call(refreshMetadata));
|
|
543
543
|
calls.push(call(isMFARequiredSSR, payload));
|
|
544
|
+
calls.push(call(loadCustomLoginRoutes));
|
|
544
545
|
yield all(calls);
|
|
545
546
|
}
|
|
546
547
|
const getUri = urlStrategy => {
|
package/index.js
CHANGED
|
@@ -558,6 +558,7 @@ function* requestAuthorizeSSR({
|
|
|
558
558
|
calls.push((0, _effects.call)(_saga2.loadVendorPublicInfo));
|
|
559
559
|
calls.push((0, _effects.call)(refreshMetadata));
|
|
560
560
|
calls.push((0, _effects.call)(isMFARequiredSSR, payload));
|
|
561
|
+
calls.push((0, _effects.call)(loadCustomLoginRoutes));
|
|
561
562
|
yield (0, _effects.all)(calls);
|
|
562
563
|
}
|
|
563
564
|
const getUri = urlStrategy => {
|
package/node/index.js
CHANGED