-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RDT-230-resolve-request #262
Conversation
Docker tags |
...olkit/src/modules/wallet-request/transport/connector-extension/connector-extension.module.ts
Show resolved
Hide resolved
...olkit/src/modules/wallet-request/transport/connector-extension/connector-extension.module.ts
Show resolved
Hide resolved
0eb367a
to
4e383c2
Compare
return result | ||
}, | ||
.andThen((response) => { | ||
if (connectResponseCallback) connectResponseCallback!(ok(response)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (connectResponseCallback) connectResponseCallback!
doesn't TS understand that and you need t assert with !
?
if (connectResponseCallback) connectResponseCallback!(ok(response)) | ||
return ok(response) | ||
}) | ||
.orElse((error) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is .orElse
behaving any different than .mapErr
in this scenario?
5d9803c
to
01eed87
Compare
🎉 This PR is included in version 2.2.0-dev.4 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 2.2.0-subintent.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 2.2.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
No description provided.