I’m using web3connect button to connect the wallet from the Moralis but i want to use the connected user address, how can i get the connected user address
On the connected user it’s showing i’m connected with the wallet
But i get null in the user array
const { web3, isWeb3Enabled, user } = useMoralis();
console.log(isWeb3Enabled);
if (isWeb3Enabled) {
console.log(user); //It's showing null
}
How can i retrieve the connected user details