From e73176974a0aea2d8b502e1a076415a05a149c87 Mon Sep 17 00:00:00 2001 From: Asha Ivey Date: Tue, 4 Aug 2020 19:23:18 +0000 Subject: [PATCH] Fix issue on participants page. --- static/absolute/js/participants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/absolute/js/participants.js b/static/absolute/js/participants.js index 8f38e81..da6f1aa 100644 --- a/static/absolute/js/participants.js +++ b/static/absolute/js/participants.js @@ -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) => {