MK
MK
Please update to the latest AppKit release, and let me know if you're still seeing the same issue. I'll close this issue for now.
@arsena21 I can reproduce this with both wallets. I'll debug and see what's going on here, but thank you for pointing this out 👍
@AlexBHarley We're working on a fix. This is only happening for Rainbow wallet.
@hutchisr What wallets are you using ?
Wagmi supports multiple wallet connections at once by default. It will also reconnect on mount to multiple wallets which you've connected before. You can set `reconnectOnMount` to `false` in ``....
@futantan Are you still able to reproduce this with the latest Wagmi version `2.11.1` ?
This should now be fixed in the latest Wagmi version `2.12.0`.
This is fixed in the latest AppKit release
This is fixed in the latest release. You should be able to get `useDisconnect` hook from `@reown/appkit/vue` like this. ```ts import { useDisconnect } from '@reown/appkit/vue' const { disconnect }...
You can directly get the wagmi config from the adapter like this. ```ts const wagmiAdapter = new WagmiAdapter({ ssr: true, networks: [], // Add networks here projectId: "YOUR_PROJECT_ID" }) wagmiAdapter.wagmiConfig...