@depay/widgets 11.4.3 → 11.4.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.
@@ -22562,9 +22562,11 @@
22562
22562
  }
22563
22563
  };
22564
22564
  React.useEffect(function () {
22565
+ var wallets = [];
22565
22566
  web3WalletsEvm.getWallets({
22566
22567
  drip: function drip(wallet) {
22567
- setDetectedWallets(Array.from(new Set(detectedWallets.concat(wallet))));
22568
+ wallets = wallets.concat(wallet);
22569
+ setDetectedWallets(wallets);
22568
22570
  }
22569
22571
  });
22570
22572
  var previouslyConnectedWalletName = get();
@@ -26345,7 +26347,7 @@
26345
26347
  var success = item.message.status == 'success';
26346
26348
  if (validated) {
26347
26349
  setTimeout(function () {
26348
- return validated(success, item.message);
26350
+ return validated(success, transaction);
26349
26351
  }, 200);
26350
26352
  }
26351
26353
  if (item.message.release) {
@@ -26509,7 +26511,7 @@
26509
26511
  }
26510
26512
  clearInterval(pollingInterval);
26511
26513
  if (validated) {
26512
- validated(true, data);
26514
+ validated(true, transaction);
26513
26515
  }
26514
26516
  setRelease(true);
26515
26517
  }