@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.
@@ -23795,8 +23795,7 @@
23795
23795
  if (typeof recoverSignature != 'function') {
23796
23796
  recoverSignature = function recoverSignature(_ref) {
23797
23797
  var message = _ref.message,
23798
- signature = _ref.signature,
23799
- wallet = _ref.wallet;
23798
+ signature = _ref.signature;
23800
23799
  return new Promise(function (resolve, reject) {
23801
23800
  fetch(endpoint, {
23802
23801
  method: 'POST',
@@ -23805,10 +23804,7 @@
23805
23804
  },
23806
23805
  body: JSON.stringify({
23807
23806
  message: message,
23808
- signature: signature,
23809
- wallet: {
23810
- name: wallet.name
23811
- }
23807
+ signature: signature
23812
23808
  })
23813
23809
  }).then(function (response) {
23814
23810
  if (response.status == 200) {