From f839b79e810e2a2f74a35e1e5b40037cb4e130c1 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Thu, 27 Feb 2025 15:54:41 -0500 Subject: [PATCH] chore: give IT bar choices array steps unique IDs to avoid identical keys (#1980) --- lib/pangea/choreographer/widgets/it_bar.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pangea/choreographer/widgets/it_bar.dart b/lib/pangea/choreographer/widgets/it_bar.dart index 0cb5caa31..e25627673 100644 --- a/lib/pangea/choreographer/widgets/it_bar.dart +++ b/lib/pangea/choreographer/widgets/it_bar.dart @@ -409,6 +409,7 @@ class ITChoices extends StatelessWidget { ); } return ChoicesArray( + id: controller.currentITStep.hashCode.toString(), isLoading: controller.isLoading || controller.choreographer.isFetching || controller.currentITStep == null,