diff --git a/packages/injected/package.json b/packages/injected/package.json index ad809ec49..31dc9e8f0 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.6-alpha.1", + "version": "2.10.6-alpha.2", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/injected/src/wallets.ts b/packages/injected/src/wallets.ts index e883bc33a..436ef83a7 100644 --- a/packages/injected/src/wallets.ts +++ b/packages/injected/src/wallets.ts @@ -818,8 +818,7 @@ const fordefi: InjectedWalletModule = { injectedNamespace: InjectedNameSpace.Ethereum, checkProviderIdentity: ({ provider }) => !!provider && - !!provider[ProviderIdentityFlag.Fordefi] && - !otherProviderFlagsExist(ProviderIdentityFlag.Fordefi, provider), + !!provider[ProviderIdentityFlag.Fordefi], getIcon: async () => (await import('./icons/fordefi.js')).default, getInterface: getInjectedInterface(ProviderIdentityFlag.Fordefi, true), platforms: ['desktop']