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