From 657b652bc2772488f85f3c75b606e54656176b12 Mon Sep 17 00:00:00 2001 From: Kelrap <99418823+Kelrap@users.noreply.github.com> Date: Fri, 11 Jul 2025 16:43:09 -0400 Subject: [PATCH] Fix activity timeout overflow (#3442) * Fix activity timeout overflow * chore: wrap error message --------- Co-authored-by: ggurdin --- lib/pangea/common/widgets/error_indicator.dart | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/pangea/common/widgets/error_indicator.dart b/lib/pangea/common/widgets/error_indicator.dart index 8f33143a6..e5913eed0 100644 --- a/lib/pangea/common/widgets/error_indicator.dart +++ b/lib/pangea/common/widgets/error_indicator.dart @@ -23,11 +23,12 @@ class ErrorIndicator extends StatelessWidget { size: iconSize ?? 24.0, ), const SizedBox(width: 8), - Text( - message, - style: style, - maxLines: 1, - overflow: TextOverflow.ellipsis, + Flexible( + child: Text( + message, + style: style, + textAlign: TextAlign.center, + ), ), ], );