You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{passedSubmission?.data?.passingSubmission ? <Typography>Your training expires on {expirationDate}</Typography> : <></>}
30
+
{remainingAttempts<=0 ?
27
31
<Stack>
28
32
<Typography><b>This training has been locked due to too many attempts. </b></Typography>
29
33
<Typography>You will be unable to progress and submit this quiz until <b>tomorrow</b>.</Typography>
30
34
<Typography>If you would like to unlock this training early and seek help with the quiz, please see a Makerspace Mentor.</Typography>
31
35
</Stack>
32
36
: <Stack>
33
-
<Typography>Click <Linkhref={`/app/maker/training/${props.moduleID}`}>here</Link> to retake this quiz.</Typography>
34
-
<Typographycomponent="div">You have {submissions.data?.remainingSubmissions.submissionLimit-submissions.data?.remainingSubmissions.failedSubmissions}attempts remaining today.</Typography>
37
+
<Typography>Click <Linkhref={`/app/maker/training/${props.moduleID}`}>here</Link>{passedSubmission?.data?.passingSubmission? <>if you would like to renew your training.</>: <>to retake this quiz.</>}</Typography>
38
+
<Typographycomponent="div">You have {remainingAttempts}{remainingAttempts===1 ? <>attempt</> : <>attempts</>} remaining today.</Typography>
0 commit comments