@mxenabled/connect-widget 2.12.3 → 2.12.4
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/dist/index.es.js +4 -4
- package/dist/index.es.js.map +1 -1
- package/dist/lastBuild.txt +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -70273,10 +70273,10 @@ const SearchedInstitutionsList = (props) => {
|
|
|
70273
70273
|
return isSupportEnabled && isInAggMode;
|
|
70274
70274
|
});
|
|
70275
70275
|
const isMicrodepositsEnabled = useSelector((state) => {
|
|
70276
|
-
const {
|
|
70276
|
+
const { isInVerifyMode } = selectCurrentMode(state);
|
|
70277
70277
|
const clientProfile = state.profiles.clientProfile || {};
|
|
70278
70278
|
const widgetProfile = state.profiles.widgetProfile || {};
|
|
70279
|
-
return
|
|
70279
|
+
return isInVerifyMode && // Widget is in Verify Mode
|
|
70280
70280
|
clientProfile.account_verification_is_enabled && // Client supports verification
|
|
70281
70281
|
clientProfile.is_microdeposits_enabled && // Client supports MDV
|
|
70282
70282
|
widgetProfile.show_microdeposits_in_connect;
|
|
@@ -70432,10 +70432,10 @@ const SearchNoResult = (props) => {
|
|
|
70432
70432
|
return isSupportEnabled && isInAggMode;
|
|
70433
70433
|
});
|
|
70434
70434
|
const isMicrodepositsEnabled = useSelector((state) => {
|
|
70435
|
-
const {
|
|
70435
|
+
const { isInVerifyMode } = selectCurrentMode(state);
|
|
70436
70436
|
const clientProfile = state.profiles.clientProfile || {};
|
|
70437
70437
|
const widgetProfile = state.profiles.widgetProfile || {};
|
|
70438
|
-
return
|
|
70438
|
+
return isInVerifyMode && // Widget is in Verify Mode
|
|
70439
70439
|
clientProfile.account_verification_is_enabled && // Client supports verification
|
|
70440
70440
|
clientProfile.is_microdeposits_enabled && // Client supports MDV
|
|
70441
70441
|
widgetProfile.show_microdeposits_in_connect;
|