Skip to content

Commit

Permalink
Merge pull request #153 from NEARBuilders/events-update
Browse files Browse the repository at this point in the history
events: Use fallback if account name does not exist
  • Loading branch information
itexpert120 authored Feb 15, 2024
2 parents 1a5f2da + 8924c98 commit bf80487
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/builddao/widget/events/ListView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ return (
},
}}
/>
{organizerProfile.name ?? "No name profile"}
{organizerProfile.name ??
organizers[0] ??
"No name profile"}
</span>
<span className="d-flex align-items-center gap-1">
<i className="bi bi-geo-alt"></i>
Expand Down

0 comments on commit bf80487

Please sign in to comment.