From ec0ce0496dd4614d78bfd283f52090ed4e632e47 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Tue, 6 Jan 2026 15:28:05 -0500 Subject: [PATCH] chore: reduce min height of span card feedback section (#5095) --- lib/pangea/choreographer/igc/span_card.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pangea/choreographer/igc/span_card.dart b/lib/pangea/choreographer/igc/span_card.dart index 76bf43586..67adb59e5 100644 --- a/lib/pangea/choreographer/igc/span_card.dart +++ b/lib/pangea/choreographer/igc/span_card.dart @@ -219,7 +219,7 @@ class _SpanCardFeedback extends StatelessWidget { Widget build(BuildContext context) { return ConstrainedBox( constraints: const BoxConstraints( - minHeight: 100.0, + minHeight: 50.0, ), child: Column( mainAxisAlignment: MainAxisAlignment.center,