Merge pull request #4 from wds4/main

Update README.md
This commit is contained in:
Tristan 2023-01-05 08:59:51 +01:00 committed by GitHub
commit 55d9f5f449
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,9 +100,9 @@ const Profile = () => {
return (
<>
<p>Name: userData?.name</p>
<p>Public key: userData?.npub</p>
<p>Picture URL: userData?.avatarUrl</p>
<p>Name: {userData?.name}</p>
<p>Public key: {userData?.npub}</p>
<p>Picture URL: {userData?.picture}</p>
</>
)
}