Skip to content

Commit

Permalink
[wallets] Ignore Rabby in MM injected provider detection (#2316)
Browse files Browse the repository at this point in the history
  • Loading branch information
MananTank authored Feb 16, 2024
1 parent 4bb65cf commit 73a374a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/soft-cougars-laugh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@thirdweb-dev/wallets": patch
---

Ignore Rabby wallet extension in MetaMask injected provider detection
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ export function getInjectedMetamaskProvider(): Ethereum | undefined {
return;
}

if (ethereum.isRabbyWallet) {
return;
}

return ethereum;
}

Expand Down

0 comments on commit 73a374a

Please sign in to comment.