Skip to content

Commit

Permalink
fix: [NO-JIRA] Support for unique providers using Checkout create pro…
Browse files Browse the repository at this point in the history
…vider and passport SDK (#1896)
  • Loading branch information
dreamoftrees authored Jun 13, 2024
1 parent ddba259 commit 65c38b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/checkout/sdk/src/provider/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export async function createProvider(
providerDetail = InjectedProvidersManager.getInstance().findProvider({ rdns: passportProviderInfo.rdns });
if (!providerDetail) {
if (passport) {
web3Provider = new Web3Provider(passport.connectEvm());
web3Provider = new Web3Provider(passport.connectEvm({ announceProvider: false }));
} else {
// eslint-disable-next-line no-console
console.error(
Expand Down

0 comments on commit 65c38b3

Please sign in to comment.