We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc5e6f commit 94dee31Copy full SHA for 94dee31
src/actions/wallet/sendCalls.ts
@@ -168,7 +168,10 @@ export async function sendCalls<
168
.includes('account upgraded to unsupported contract') ||
169
error.details.toLowerCase().includes('eip-7702 not supported') ||
170
error.details.toLowerCase().includes('unsupported wc_ method') ||
171
- error.details.toLowerCase().includes('feature toggled misconfigured'))
+ // magic.link
172
+ error.details.toLowerCase().includes('feature toggled misconfigured') ||
173
+ // Trust Wallet
174
+ error.details.toLowerCase().includes('jsonrpcengine: response has no error or result for request'))
175
) {
176
if (capabilities) {
177
const hasNonOptionalCapability = Object.values(capabilities).some(
0 commit comments