diff --git a/src/client/src/TournamentOverview.js b/src/client/src/TournamentOverview.js index 04703ca..26333d4 100644 --- a/src/client/src/TournamentOverview.js +++ b/src/client/src/TournamentOverview.js @@ -16,10 +16,12 @@ function showError(error) { } function TournamentTier(props){ + const { tournamentId } = useParams(); + let roundTypes = ["finals", "semifinals", "quarterfinals", "eighthfinals", "sixteenthfinals", "thirtysecondfinals"]; let matches = []; for (let i = 0; i < props.matches.length; i++) { - matches.push(); + matches.push(); } return(