Skip to content

Commit

Permalink
fix it feedback request
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjord committed Jun 7, 2024
1 parent 9ce4924 commit 7deb235
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pangea/choreographer/controllers/it_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class ITController {
}
}

Future<void>getNextTranslationData() async {
Future<void> getNextTranslationData() async {
try {
if (completedITSteps.length < goldRouteTracker.continuances.length) {
final String currentText = choreographer.currentText;
Expand Down Expand Up @@ -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);
}

0 comments on commit 7deb235

Please sign in to comment.