@depay/widgets 11.4.4 → 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();