fix missing colors in infiltration

This commit is contained in:
Olivier Gagnon 2021-11-02 16:20:32 -04:00
parent 437d96edbe
commit fa44b38506

@ -119,11 +119,12 @@ export function Game(props: IProps): React.ReactElement {
} }
function Progress(): React.ReactElement { function Progress(): React.ReactElement {
console.log(results);
return ( return (
<h4> <Typography variant="h4">
<span style={{ color: "gray" }}>{results.slice(0, results.length - 1)}</span> <span style={{ color: "gray" }}>{results.slice(0, results.length - 1)}</span>
{results[results.length - 1]} {results[results.length - 1]}
</h4> </Typography>
); );
} }