Remove fragment and fix typo

This commit is contained in:
nickofolas 2022-03-21 11:17:06 -05:00
parent dfca624e35
commit d820625721

@ -62,7 +62,7 @@ export const GraftingRoot = (): React.ReactElement => {
const [selectedAug, setSelectedAug] = useState(getAvailableAugs(player)[0]); const [selectedAug, setSelectedAug] = useState(getAvailableAugs(player)[0]);
return <> return (
<Container disableGutters maxWidth="lg" sx={{ mx: 0 }}> <Container disableGutters maxWidth="lg" sx={{ mx: 0 }}>
<Button onClick={() => router.toLocation(Locations[LocationName.NewTokyoVitaLife])}> <Button onClick={() => router.toLocation(Locations[LocationName.NewTokyoVitaLife])}>
Back Back
@ -140,7 +140,7 @@ export const GraftingRoot = (): React.ReactElement => {
</Paper> </Paper>
<Typography> <Typography>
Augmenting causes signficant physical and psychological changes to the affected Augmenting causes significant physical and psychological changes to the affected
individual, and the best way for the body to deal with these effects is to undergo individual, and the best way for the body to deal with these effects is to undergo
a full shutdown process. a full shutdown process.
<br /> <br />
@ -152,5 +152,5 @@ export const GraftingRoot = (): React.ReactElement => {
</Box> </Box>
</Container> </Container>
</> )
} }