using name for content list

This commit is contained in:
Roland Osborne 2024-12-12 13:55:47 -08:00
parent 53aae0879b
commit 23728243df

View File

@ -89,7 +89,7 @@ export function useContent() {
if (contacts.length === 0) { if (contacts.length === 0) {
return [] return []
} }
return contacts.map((contact) => (contact ? contact.handle : null)) return contacts.map((contact) => (contact ? contact.name ? contact.name : contact.handle : null))
} }
const selectImage = () => { const selectImage = () => {