@mxenabled/connect-widget 0.13.5 → 0.13.7

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 CHANGED
@@ -62706,6 +62706,7 @@ const InstitutionTile = (props) => {
62706
62706
  startIcon: /* @__PURE__ */ jsxRuntimeExports.jsx(
62707
62707
  De,
62708
62708
  {
62709
+ alt: "",
62709
62710
  institutionGuid: institution.guid,
62710
62711
  logoUrl: institution.logo_url,
62711
62712
  size
@@ -79580,7 +79581,9 @@ const ComeBack = ({ microdeposit, onDone }) => {
79580
79581
  "data-test": "done-button",
79581
79582
  fullWidth: true,
79582
79583
  onClick: () => {
79583
- postMessageFunctions.onPostMessage("connect/microdeposits/comeBack/primaryAction");
79584
+ postMessageFunctions.onPostMessage("connect/microdeposits/comeBack/primaryAction", {
79585
+ microdeposit_guid: microdeposit.guid
79586
+ });
79584
79587
  postMessageFunctions.onPostMessage(POST_MESSAGES.BACK_TO_SEARCH);
79585
79588
  return fadeOut(containerRef.current, "up", 300).then(() => onDone());
79586
79589
  },