fix missing table body

This commit is contained in:
Olivier Gagnon 2021-10-18 14:15:43 -04:00
parent ab48c7062f
commit 0419118fb1

@ -8,6 +8,7 @@ import { numeralWrapper } from "../../ui/numeralFormat";
import { Reputation } from "./Reputation";
import Table from "@mui/material/Table";
import TableBody from "@mui/material/TableBody";
import TableCell from "@mui/material/TableCell";
import TableRow from "@mui/material/TableRow";
import Typography from "@mui/material/Typography";
@ -148,6 +149,7 @@ export function CharacterOverview({ save }: IProps): React.ReactElement {
const classes = useStyles();
return (
<Table sx={{ display: "block", m: 1 }}>
<TableBody>
<TableRow>
<TableCell component="th" scope="row" classes={{ root: classes.cellNone }}>
<Typography classes={{ root: classes.hp }}>HP&nbsp;</Typography>
@ -291,6 +293,7 @@ export function CharacterOverview({ save }: IProps): React.ReactElement {
</IconButton>
</TableCell>
</TableRow>
</TableBody>
</Table>
);
}