diff --git a/frontends/search/src/components/ResultsPage.tsx b/frontends/search/src/components/ResultsPage.tsx index 51928f21cf..5f4c1385d6 100644 --- a/frontends/search/src/components/ResultsPage.tsx +++ b/frontends/search/src/components/ResultsPage.tsx @@ -401,7 +401,7 @@ const ResultsPage = (props: ResultsPageProps) => { void response.json().then((data) => { let resultingChunks: any = []; if (groupUnique) { - const groupResult = data.results as GroupScoreChunkDTO[]; + const groupResult = data.chunks as GroupScoreChunkDTO[]; setTotalPages(data.total_pages); setSearchID(data.id); setCorrectedQuery(data.corrected_query);