Updated input validation

This commit is contained in:
2025-03-21 20:10:15 -04:00
parent 031184b666
commit 81507afbcc
24 changed files with 510 additions and 112 deletions

View File

@@ -81,15 +81,18 @@ export default function GamePage(){
className="flex flex-col items-center justify-center"
>
{/* Tutorials */}
<TutorialComponent
steps={gameTutorialSteps}
run={tutorialsStatus.gameTutorialStatus === TutorialStatus.NOT_COMPLETED}
showProgress={true}
showSkipButton={true}
continuous={true}
disableScrolling={true}
updateFunction={updateGameTutorialStatus}
/>
{
tutorialsStatus.gameTutorialStatus === TutorialStatus.NOT_COMPLETED &&
<TutorialComponent
steps={gameTutorialSteps}
run={tutorialsStatus.gameTutorialStatus === TutorialStatus.NOT_COMPLETED}
showProgress={true}
showSkipButton={true}
continuous={true}
disableScrolling={true}
updateFunction={updateGameTutorialStatus}
/>
}
<GameHeader
game={game}
/>