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

pull/1476/head
ggurdin 1 year ago
parent 6872a0f9de
commit 80d9276f6e
No known key found for this signature in database
GPG Key ID: A01CB41737CBB478

@ -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),

Loading…
Cancel
Save