Fix missing profile on apps page

This commit is contained in:
Jonathan Staab 2023-09-27 09:36:25 -07:00
parent 4f56f939d2
commit c4541e2fa6

View File

@ -90,7 +90,7 @@
const $person = derivePerson(e.pubkey).get()
e.recs = recsByNaddr[e.address] || []
e.profile = tryJson(() => JSON.parse(e.content)) || $person?.profile
e.profile = tryJson(() => JSON.parse(e.content)) || $person?.profile || {}
e.handle = $person?.handle
return e as App