Hi, I have set up auth0 to let users to log in via Google.
And here is the code:
const {
name,
nickname,
picture,
email,
sub,
} = user;
However, the nickname displays the user’s email string before @ sign. For instance:
Will display jackdeti1028 to me.
This will expose user’s email and is very ugly on the page.
What can I do?
Thanks