We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edbc6c4 commit 3d7aa99Copy full SHA for 3d7aa99
1 file changed
mobile-app/lib/ui/views/learn/challenge/templates/english/english_viewmodel.dart
@@ -73,7 +73,7 @@ class EnglishViewModel extends BaseViewModel {
73
if (challenge.fillInTheBlank == null) break;
74
inputValues[i] = inputValues[i].trim();
75
76
- bool value = inputValues[i] == challenge.fillInTheBlank!.blanks[i].answer;
+ bool value = inputValues[i].toLowerCase() == challenge.fillInTheBlank!.blanks[i].answer.toLowerCase();
77
correctIncorrect['blank_correct_$i'] = value;
78
}
79
0 commit comments