Hi,
I have an issue, when i am connecting wallet by firebase-moralis auth my wallet address is not saving in displayName field in firebase emulator
My authentication function:
const handleAuthentication = async () => {
try {
await signInWithMoralis(moralisAuth);
dispatch(setSelected("summary"));
localStorage.setItem("is_logged", "true");
dispatch( setKeys({ walletAddress: user.displayName, }) );
dispatch(setIsAuthenticated(true));
} catch (err) {
console.log("authentication error", err);
}
};