Skip to content

Commit

Permalink
fix: ChainIdToConnect bug
Browse files Browse the repository at this point in the history
  • Loading branch information
LautaroPetaccio committed May 21, 2024
1 parent 36ab4d4 commit c8f4212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ConnectionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ export class ConnectionManager {
}

this.connector = connector
this.setConnectionData(providerType, chainId)
this.setConnectionData(providerType, chainIdToConnect)

return {
provider: ProviderAdapter.adapt(provider),
providerType,
account: account || '',
chainId
chainId: chainIdToConnect
}
}

Expand Down

0 comments on commit c8f4212

Please sign in to comment.