don't allow user to chose the incorrect choices in IT

This commit is contained in:
ggurdin 2024-10-31 15:44:41 -04:00
parent 6872a0f9de
commit 80d9276f6e
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

View file

@ -352,7 +352,7 @@ class ITChoices extends StatelessWidget {
void selectContinuance(int index, BuildContext context) {
final Continuance continuance =
controller.currentITStep!.continuances[index];
if (continuance.level == 1 || continuance.wasClicked) {
if (continuance.level == 1) {
Future.delayed(
const Duration(milliseconds: 500),
() => controller.selectTranslation(index),