Hi All. I have used onAccountsChanged and wanted to unsubscribe in my return for useEffect hook but in the console I received UNSUB NOT SUPPORTED … Why is that ? Thanks
useEffect(() => {
const unsubscribe = Moralis.Web3.onAccountsChanged(function (accounts) {
console.log(accounts);
});
return () => {
unsubscribe();
};
}, [Moralis.Web3]);