We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6897871 commit f818d2bCopy full SHA for f818d2b
packages/thirdweb/src/wallets/connection/types.ts
@@ -101,14 +101,14 @@ export type AutoConnectProps = {
101
*
102
* ```tsx
103
* <AutoConnect
104
- * onConnect={(activeWallet, otherWallets) => {
+ * onConnect={(activeWallet, allConnectedWallets) => {
105
* console.log("auto connected to", activeWallet)
106
- * console.log("other wallets that were also connected", otherWallets)
+ * console.log("all connected wallets", allConnectedWallets)
107
* }}
108
* />
109
* ```
110
*/
111
- onConnect?: (activeWallet: Wallet, otherWallets: Wallet[]) => void;
+ onConnect?: (activeWallet: Wallet, allConnectedWallets: Wallet[]) => void;
112
113
/**
114
* Optional chain to autoconnect to
0 commit comments