when a User SignUP, in the Header I want to display his name, But it shows null, When I refresh the page it shows the correct name. why this is not auto rendering on changing username.
homepage.js
const [username, setusername] = useState('loading..')
useEffect(() => {
setusername(auth.currentUser.displayName);
}, [[auth.currentUser.displayName]])
// Some more work here
return(
// display Name
)