From f3b98aa35e8a76e5863855d6cc6a76de0ab5ccbc Mon Sep 17 00:00:00 2001 From: ggurdin Date: Tue, 2 Dec 2025 16:05:21 -0500 Subject: [PATCH] fix: allow reselection of incorrect IGC choices after correct choice selected --- lib/pangea/choreographer/igc/span_data_model.dart | 9 --------- 1 file changed, 9 deletions(-) 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];