From 015fb4670360b6aa9eec499329fdbc0aa1f8026e Mon Sep 17 00:00:00 2001 From: G4mingJon4s Date: Tue, 13 Sep 2022 17:58:47 +0200 Subject: [PATCH] Fix for #2442, allowing going forward in tutorial --- src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx b/src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx index dd7f168b1..de7961288 100644 --- a/src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx +++ b/src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx @@ -624,7 +624,7 @@ export function InteractiveTutorialRoot(): React.ReactElement { )} - {content.canNext && ( + {(content.canNext || ITutorial.stepIsDone[step]) && (