fix: give morph definition a fixed height to prevent other element from jumping around

This commit is contained in:
ggurdin 2026-01-27 14:23:54 -05:00
parent 63ba5a7d10
commit e2ec54a780
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

View file

@ -199,10 +199,8 @@ class _AnalyticsActivityView extends StatelessWidget {
return const SizedBox.shrink();
}
return ConstrainedBox(
constraints: const BoxConstraints(
minHeight: 80,
),
return SizedBox(
height: 125.0,
child: selectedChoice == null
? const SizedBox.shrink()
: SingleChildScrollView(