@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.
@@ -22566,9 +22566,11 @@ var SelectWalletDialog = (function (props) {
22566
22566
  }
22567
22567
  };
22568
22568
  useEffect(function () {
22569
+ var wallets = [];
22569
22570
  getWallets({
22570
22571
  drip: function drip(wallet) {
22571
- setDetectedWallets(Array.from(new Set(detectedWallets.concat(wallet))));
22572
+ wallets = wallets.concat(wallet);
22573
+ setDetectedWallets(wallets);
22572
22574
  }
22573
22575
  });
22574
22576
  var previouslyConnectedWalletName = get();
@@ -26349,7 +26351,7 @@ var PaymentTrackingProvider = (function (props) {
26349
26351
  var success = item.message.status == 'success';
26350
26352
  if (validated) {
26351
26353
  setTimeout(function () {
26352
- return validated(success, item.message);
26354
+ return validated(success, transaction);
26353
26355
  }, 200);
26354
26356
  }
26355
26357
  if (item.message.release) {
@@ -26513,7 +26515,7 @@ var PaymentTrackingProvider = (function (props) {
26513
26515
  }
26514
26516
  clearInterval(pollingInterval);
26515
26517
  if (validated) {
26516
- validated(true, data);
26518
+ validated(true, transaction);
26517
26519
  }
26518
26520
  setRelease(true);
26519
26521
  }