diff --git a/web/pages/tournaments/index.tsx b/web/pages/tournaments/index.tsx index 08eb1e3c..e93d5844 100644 --- a/web/pages/tournaments/index.tsx +++ b/web/pages/tournaments/index.tsx @@ -121,7 +121,7 @@ export async function getStaticProps() { .map(([tourney, group]) => ({ tourney, slug: group!.slug, // eslint-disable-line - numPeople: group!.memberIds.length, // eslint-disable-line + numPeople: group!.totalMembers, // eslint-disable-line })) return { props: { sections } } }