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