Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

188
Views
firebase.auth().currentUser returning an object with undefined properties? Reactjs

here is my code:

const [user] = useAuthState(auth);

function submitPostHandler() {
    if (user) {
        const currentUser = auth.currentUser;
        firestore.collection("posts").add({
            title: title,
            desc: desc,
            imgUrl: imgUrl,
            poster: currentUser.displayName,
            createdAt: new Date().toISOString(),
            comments: []
        });
        console.log(currentUser);
        //navigate("/all-posts");
    }
    else {
        navigate("/login");
    }
}

Simple, whenever I run this function it logs an object that has properties that are undefined as in if I switch console.log(currentUser); with console.log(currentUser.displayName) it logs undefined. Unusually useAuthState(); returns true.

It seems like when I was creating the user with the createUserWithEmailAndPassowrdOrSomething() I was not passing in the email and password. I forgot to change this when @Dharmaraj told me before.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!