Skip to content

Commit

Permalink
Fix issue on participants page.
Browse files Browse the repository at this point in the history
  • Loading branch information
aivey65 committed Aug 4, 2020
1 parent c7ac598 commit e731769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/absolute/js/participants.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function showParticipants() {
);
participantContainer.innerHTML = "";

const participants = response.data;
const participants = response.data.participants;
participants
.map((p) => ({ ...p, location: `${p.lat},${p.long}` }))
.forEach((participant) => {
Expand Down

0 comments on commit e731769

Please sign in to comment.