Update README.md

This commit is contained in:
David Strayhorn 2023-01-02 15:08:47 -05:00
parent 5e058bef5e
commit bdf1085b95

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>
</>
)
}