@depay/widgets 12.3.1 → 12.3.2

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/esm/index.js CHANGED
@@ -23756,8 +23756,7 @@ var SignLoginDialog = (function (props) {
23756
23756
  if (typeof recoverSignature != 'function') {
23757
23757
  recoverSignature = function recoverSignature(_ref) {
23758
23758
  var message = _ref.message,
23759
- signature = _ref.signature,
23760
- wallet = _ref.wallet;
23759
+ signature = _ref.signature;
23761
23760
  return new Promise(function (resolve, reject) {
23762
23761
  fetch(endpoint, {
23763
23762
  method: 'POST',
@@ -23766,10 +23765,7 @@ var SignLoginDialog = (function (props) {
23766
23765
  },
23767
23766
  body: JSON.stringify({
23768
23767
  message: message,
23769
- signature: signature,
23770
- wallet: {
23771
- name: wallet.name
23772
- }
23768
+ signature: signature
23773
23769
  })
23774
23770
  }).then(function (response) {
23775
23771
  if (response.status == 200) {