@frontegg/redux-store 6.140.0 → 6.142.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.
|
@@ -19,7 +19,7 @@ import { securityCenterBreachedPasswordUsersMock, securityCenterInactivityPasswo
|
|
|
19
19
|
*/
|
|
20
20
|
export function securityCenterSagaWrapper(action) {
|
|
21
21
|
return function* (props) {
|
|
22
|
-
const [securityCenterFeatureFlag] = yield call(getFeatureFlags, ['security-center-admin-portal']);
|
|
22
|
+
const [securityCenterFeatureFlag] = yield call(getFeatureFlags, ['security-center-admin-portal-major-version']);
|
|
23
23
|
yield action(props);
|
|
24
24
|
if (securityCenterFeatureFlag) {
|
|
25
25
|
yield loadRecommendations();
|
package/index.js
CHANGED
|
@@ -41,7 +41,7 @@ const _excluded = ["callback"];
|
|
|
41
41
|
*/
|
|
42
42
|
function securityCenterSagaWrapper(action) {
|
|
43
43
|
return function* (props) {
|
|
44
|
-
const [securityCenterFeatureFlag] = yield (0, _effects.call)(_helpers.getFeatureFlags, ['security-center-admin-portal']);
|
|
44
|
+
const [securityCenterFeatureFlag] = yield (0, _effects.call)(_helpers.getFeatureFlags, ['security-center-admin-portal-major-version']);
|
|
45
45
|
yield action(props);
|
|
46
46
|
if (securityCenterFeatureFlag) {
|
|
47
47
|
yield loadRecommendations();
|
package/node/index.js
CHANGED