@skip-go/widget 2.2.5-alpha.0 → 2.2.5-alpha.1

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/build/index.es.js CHANGED
@@ -3900,11 +3900,10 @@ const SetAddressDialog = ({ open, onOpen, chain, index, signRequired, isDestinat
3900
3900
  const { chainType, chainID, bech32Prefix } = chain;
3901
3901
  const { makeDestinationWallets } = useSkipConfig();
3902
3902
  const { makeWallets } = useMakeWallets();
3903
- const _wallets = makeWallets(chainID);
3904
3903
  const destinationWallets = makeDestinationWallets === null || makeDestinationWallets === void 0 ? void 0 : makeDestinationWallets(chainID);
3905
3904
  const wallets = destinationWallets && destinationWallets.length > 0
3906
3905
  ? destinationWallets
3907
- : _wallets;
3906
+ : makeWallets(chainID);
3908
3907
  const [address, setAddress] = useState('');
3909
3908
  const [isEditing, setIsEditing] = useState(false);
3910
3909
  const validateAddress = (address) => {