chore: show close button in choreo error snackbar (#5631)

This commit is contained in:
ggurdin 2026-02-10 12:28:36 -05:00 committed by GitHub
parent d3d040d5b6
commit 2f7dfe972b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)}",
),