Skip to content

Commit

Permalink
avoid multiple metamask connectors
Browse files Browse the repository at this point in the history
  • Loading branch information
lochie committed Jun 19, 2024
1 parent 232c8a2 commit 09c4a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/connectkit/src/wallets/useWallets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const useWallets = (): WalletProps[] => {
.filter(
(wallet, index, self) =>
!(
wallet.id === 'metaMaskSDK' &&
(wallet.id === 'metaMaskSDK' || wallet.id === 'metaMask') &&
self.find(
(w) => w.id === 'io.metamask' || w.id === 'io.metamask.mobile'
)
Expand Down

0 comments on commit 09c4a59

Please sign in to comment.