diff --git a/src/client/src/TournamentManager.js b/src/client/src/TournamentManager.js index 7e7d0b6..1196c06 100644 --- a/src/client/src/TournamentManager.js +++ b/src/client/src/TournamentManager.js @@ -132,6 +132,8 @@ function ManageTournament(props) { + + { @@ -141,6 +143,8 @@ function ManageTournament(props) { renderInput={(params) => } /> + + { @@ -150,6 +154,8 @@ function ManageTournament(props) { renderInput={(params) => } /> + + {/* */} diff --git a/src/client/src/TournamentOverview.js b/src/client/src/TournamentOverview.js index 2c06638..f89c410 100644 --- a/src/client/src/TournamentOverview.js +++ b/src/client/src/TournamentOverview.js @@ -3,7 +3,7 @@ import { Link } from "react-router-dom"; import Appbar from './components/AsuraBar'; import TournamentBar from "./components/TournamentBar"; import { useParams } from 'react-router-dom' -import { Button, Paper, Stack } from "@mui/material"; +import { Button, Paper, Stack, CircularProgress, Box } from "@mui/material"; import "./components/tournamentBracket.css"; function MatchPair(props) { @@ -172,7 +172,7 @@ function BracketViewer(props) { return })} - :

Loading...

+ : ); }