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