Error display, minor details
This commit is contained in:
parent
54f98beb40
commit
f13129350f
|
@ -6,6 +6,10 @@ import ErrorSnackbar from "./components/ErrorSnackbar";
|
|||
import {Button, Textfield, Stack, InputLabel, Paper, Typography} from '@mui/material';
|
||||
|
||||
|
||||
function ProfileView() {
|
||||
return "lol";
|
||||
}
|
||||
|
||||
export default function LoginPage() {
|
||||
return (
|
||||
<>
|
||||
|
|
|
@ -122,7 +122,7 @@ function BracketViewer(props){
|
|||
.then(data => {
|
||||
if (data.status !== "OK") {
|
||||
// Do your error thing
|
||||
console.error(data);
|
||||
showError(data.data);
|
||||
return;
|
||||
}
|
||||
let tournament = data.data;
|
||||
|
|
Loading…
Reference in New Issue