GianlucaMinoprio

Results 3 comments of GianlucaMinoprio

Because connect is being called twice in this case, I recommend moving the logic into a `useEffect`of `ConnectWithInjector` like this: ``` if (wallet?.connector.id !== 'familyAccountsProvider') { connectTimeout = setTimeout(runConnect, 600);...

Pushed the update @lochie, if you’re able to find a way to detect when the connection is canceled, that would be awesome. Let me know if I can help debug!

I've added a small change so that the direct connect from the button only work for Family Account: ``` if (connector.id === 'familyAccountsProvider') { connect({ connector: connector }); } ```...