fix: store pic urls

This commit is contained in:
Alejandro Gomez
2023-01-15 13:26:21 +01:00
parent 5b69b2f7b0
commit 02af127869
3 changed files with 3 additions and 4 deletions

View File

@ -38,8 +38,8 @@ const UserItem = ({ pubkey, display_name, picture, nip05, ...rest }: User) => {
)
}
function normalizeUser({ pubkey, about, nip05, name, display_name }: User) {
return { pubkey, about, nip05, name, display_name }
function normalizeUser({ pubkey, picture, nip05, name, display_name }: User) {
return { pubkey, nip05, name, picture, display_name }
}
const Textarea = ({ users, onChange, ...rest }: any) => {