@depay/widgets 12.3.0 → 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,7 +23797,6 @@
23797
23797
  recoverSignature = function recoverSignature(_ref) {
23798
23798
  var message = _ref.message,
23799
23799
  signature = _ref.signature;
23800
- _ref.wallet;
23801
23800
  return new Promise(function (resolve, reject) {
23802
23801
  fetch(endpoint, {
23803
23802
  method: 'POST',
@@ -23833,7 +23832,8 @@
23833
23832
  wallet.sign(messageToSign).then(function (signature) {
23834
23833
  recoverSignature({
23835
23834
  message: messageToSign,
23836
- signature: signature
23835
+ signature: signature,
23836
+ wallet: wallet
23837
23837
  }).then(function (account) {
23838
23838
  props.resolve({
23839
23839
  account: account,