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