diff --git a/lib/pangea/choreographer/igc/span_data_model.dart b/lib/pangea/choreographer/igc/span_data_model.dart index a92710b80..f4d01f142 100644 --- a/lib/pangea/choreographer/igc/span_data_model.dart +++ b/lib/pangea/choreographer/igc/span_data_model.dart @@ -98,15 +98,6 @@ class SpanData { return -1; } - // if user ever selected the correct choice, automatically select it - final selectedCorrectIndex = choices!.indexWhere((choice) { - return choice.selected && choice.isBestCorrection; - }); - - if (selectedCorrectIndex != -1) { - return selectedCorrectIndex; - } - SpanChoice? mostRecent; for (int i = 0; i < choices!.length; i++) { final choice = choices![i];