ConnectorAlreadyConnectedError: Connector already connected #373
Unanswered
thecooltechguy
asked this question in
Q&A
Replies: 1 comment
-
Actually, just realized this might be better suited as an issue vs. discussion, so I created an issue with a repro URL here: #374 Thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
First off, thank you so much for making this library -- it's AWESOME! 🔥
I created a new next.js react app and I installed wagmi and tried to use the quickstart code on the front page of https://wagmi.sh/, but I keep getting the following error when I click my "Connect wallet" button (which then calls the
connect
function from theuseConnect()
hook):Investigating further, I'm finding that the output of
useAccount()
looks something like the following:{ data: null, error: null, fetchStatus: "idle", isError: false, isFetched: true, isFetching: false, isIdle: false, isLoading: false, isRefetching: false, isSuccess: true, refetch: refetch(), … }
The interesting thing to note here is that
isSuccess
istrue
, whiledata
isnull
.I'm using Metamask on Firefox (which is connected to a local Ganache blockchain running on my laptop). I tried switching networks within Metamask and also restarting my browser, but none of these options worked.
Does anyone know how I can resolve this issue?
Thanks! :)
Beta Was this translation helpful? Give feedback.
All reactions