diff --git a/app/components/KoFixtures.tsx b/app/components/KoFixtures.tsx index 0981e55..e00b7dd 100644 --- a/app/components/KoFixtures.tsx +++ b/app/components/KoFixtures.tsx @@ -2,6 +2,7 @@ import { useMemo, useState, useEffect } from "react"; import { Match, Team } from "@/lib/types"; +import { STADIUMS, MATCH_STADIUMS } from "@/lib/stadiums"; import Flag from "./Flag"; function fmtShortDate(iso: string): string { @@ -100,6 +101,8 @@ export default function KoFixtures({ teams, matches }: { teams: Team[]; matches: SF: "Halbfinale", "3RD": "Platz 3", FINAL: "Finale", }; + const city = STADIUMS[MATCH_STADIUMS[m.matchNumber]]?.city; + return (
- {stageMap[m.stage] ?? m.stage} · Spiel {m.matchNumber || "—"} + + {stageMap[m.stage] ?? m.stage} · Spiel {m.matchNumber || "—"} + {city ? ` · ${city}` : ""} + {statusLabel(m)}