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