Merge pull request #4103 from G4mingJon4s/dev

Fix for #2442 and #2795.
This commit is contained in:
hydroflame 2022-09-23 00:56:40 -03:00 committed by GitHub
commit b139d689a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

@ -125,7 +125,7 @@ export function TerminalRoot({ terminal, router, player }: IProps): React.ReactE
paragraph={false} paragraph={false}
onClick={() => terminal.connectToServer(player, item.hostname)} onClick={() => terminal.connectToServer(player, item.hostname)}
> >
<Typography>{item.hostname}</Typography> <Typography sx={{ textDecoration: 'underline', "&:hover": { textDecoration: 'none'} }}>{item.hostname}</Typography>
</MuiLink> </MuiLink>
</> </>
)} )}

@ -624,7 +624,7 @@ export function InteractiveTutorialRoot(): React.ReactElement {
<ArrowBackIos /> <ArrowBackIos />
</IconButton> </IconButton>
)} )}
{content.canNext && ( {(content.canNext || ITutorial.stepIsDone[step]) && (
<IconButton onClick={iTutorialNextStep} aria-label="next"> <IconButton onClick={iTutorialNextStep} aria-label="next">
<ArrowForwardIos /> <ArrowForwardIos />
</IconButton> </IconButton>