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