Skip to content

add user={undefined} to UserProfile.js - #19

Open
andriusmv wants to merge 6 commits into
mainfrom
firebase-v9
Open

add user={undefined} to UserProfile.js#19
andriusmv wants to merge 6 commits into
mainfrom
firebase-v9

Conversation

@andriusmv

Copy link
Copy Markdown

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

vercel Bot commented Apr 26, 2022

Copy link
Copy Markdown

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