diff --git a/lib/pangea/choreographer/controllers/it_controller.dart b/lib/pangea/choreographer/controllers/it_controller.dart index 6d5f8e3476..61c8c2312c 100644 --- a/lib/pangea/choreographer/controllers/it_controller.dart +++ b/lib/pangea/choreographer/controllers/it_controller.dart @@ -183,7 +183,7 @@ class ITController { } } - FuturegetNextTranslationData() async { + Future getNextTranslationData() async { try { if (completedITSteps.length < goldRouteTracker.continuances.length) { final String currentText = choreographer.currentText; @@ -478,5 +478,5 @@ class CurrentITStep { // get continuance with highest level Continuance get best => - continuances.reduce((a, b) => a.level > b.level ? a : b); + continuances.reduce((a, b) => a.level < b.level ? a : b); }