From 2f7dfe972b2201396d1081fe4b79259838d226ec Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Tue, 10 Feb 2026 12:28:36 -0500 Subject: [PATCH] chore: show close button in choreo error snackbar (#5631) --- lib/pangea/choreographer/choreographer_has_error_button.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pangea/choreographer/choreographer_has_error_button.dart b/lib/pangea/choreographer/choreographer_has_error_button.dart index b90a52fed..5e3e8b5ea 100644 --- a/lib/pangea/choreographer/choreographer_has_error_button.dart +++ b/lib/pangea/choreographer/choreographer_has_error_button.dart @@ -20,6 +20,7 @@ class ChoreographerHasErrorButton extends StatelessWidget { ScaffoldMessenger.of(context).showSnackBar( SnackBar( duration: const Duration(seconds: 5), + showCloseIcon: true, content: Text( "${error.title(context)} ${error.description(context)}", ),