@mxenabled/connect-widget 2.17.4 → 2.17.5
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 -6
- 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
|
@@ -80987,9 +80987,7 @@ const SharedRoutingNumber = (props) => {
|
|
|
80987
80987
|
InstitutionTile,
|
|
80988
80988
|
{
|
|
80989
80989
|
institution,
|
|
80990
|
-
selectInstitution: () =>
|
|
80991
|
-
() => selectInstitution(institution.guid)
|
|
80992
|
-
),
|
|
80990
|
+
selectInstitution: () => selectInstitution(institution),
|
|
80993
80991
|
size: 32
|
|
80994
80992
|
},
|
|
80995
80993
|
institution.guid
|
|
@@ -81321,7 +81319,7 @@ const RoutingNumber = (props) => {
|
|
|
81321
81319
|
setInstitutions([]);
|
|
81322
81320
|
},
|
|
81323
81321
|
routingNumber: values.routingNumber,
|
|
81324
|
-
selectInstitution: (
|
|
81322
|
+
selectInstitution: (institution) => stepToIAV(institution)
|
|
81325
81323
|
}
|
|
81326
81324
|
);
|
|
81327
81325
|
}
|
|
@@ -85019,8 +85017,8 @@ const RenderConnectStep = (props) => {
|
|
|
85019
85017
|
{
|
|
85020
85018
|
microdepositGuid: currentMicrodepositGuid,
|
|
85021
85019
|
ref: props.navigationRef,
|
|
85022
|
-
stepToIAV: (
|
|
85023
|
-
handleSelectInstitution(
|
|
85020
|
+
stepToIAV: (institution) => {
|
|
85021
|
+
handleSelectInstitution(institution);
|
|
85024
85022
|
props.setConnectLocalState({ returnToMicrodeposits: true });
|
|
85025
85023
|
}
|
|
85026
85024
|
}
|