codefordenver/encorelink

Add a section at the bottom of the organizer dashboard that shows events that have no event volunteers that have been approved

Closed this issue · 1 comments

Add a section at the bottom of the organizer dashboard that shows events that have no event volunteers that have been approved

Closing this issue as it appears to be resolved:

const eventVolunteers = data.reduce((prev, curr) => prev.concat(curr.eventvolunteers), []);
const awaitingVolunteers = data.filter((event) =>
!event.eventvolunteers || !event.eventvolunteers.length
).map((event) => <EventRow key={event.id} event={event} />);