Fix for #2442, allowing going forward in tutorial

This commit is contained in:
G4mingJon4s 2022-09-13 17:58:47 +02:00
parent 2592c6ccd8
commit 015fb46703

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