Skip to content

Conversation

andriusmv
Copy link

What: add user={undefined} to user (line 2 of file "UserProfile.js")
Where: UserProfile.js
Why: to avoid TypeError: Cannot read properties of undefined (reading 'photoURL'), (reading 'username') and (reading 'displayName').

Code should look like this:

// UI component for user profile
export default function UserProfile({ user={undefined} }) {
  return (
    <div className="box-center">
      <img src={user.photoURL || '/hacker.png'} className="card-img-center" />
      <p>
        <i>@{user.username}</i>
      </p>
      <h1>{user.displayName || 'Anonymous User'}</h1>
    </div>
  );
}

@vercel
Copy link

vercel bot commented Apr 26, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
next-firebase-course ✅ Ready (Inspect) Visit Preview Apr 26, 2022 at 4:43PM (UTC)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants