This commit is contained in:
2026-06-23 15:56:11 -05:00
parent 93ae2cbf0a
commit 82d093fbb4
4 changed files with 48 additions and 22 deletions

View File

@@ -21,7 +21,8 @@ export async function GET() {
}
const groupTables = computeGroupTables(teams, matches);
const thirdTable = computeThirdPlaceTable(groupTables);
const groupTablesLive = computeGroupTables(teams, matches, true);
const thirdTable = computeThirdPlaceTable(groupTablesLive);
const qGroups = qualifiedThirdGroups(thirdTable);
const annex = qGroups.length === 8 ? resolveAnnexC(qGroups) : null;
@@ -30,6 +31,7 @@ export async function GET() {
teams,
matches,
groupTables,
groupTablesLive,
thirdTable,
annexAssignment: annex,
annexResolved: annex != null,