diff --git a/lib/features/emails/presentation/email_compose_screen.dart b/lib/features/emails/presentation/email_compose_screen.dart index 1fd94ee..5c9b4fa 100644 --- a/lib/features/emails/presentation/email_compose_screen.dart +++ b/lib/features/emails/presentation/email_compose_screen.dart @@ -67,7 +67,14 @@ class _EmailComposeScreenState extends ConsumerState { } catch (e) { if (mounted) { ScaffoldMessenger.of(context).showSnackBar( - SnackBar(content: Text('Failed to generate: $e')), + SnackBar( + content: Text('Failed to generate: $e'), + duration: const Duration(seconds: 10), + action: SnackBarAction( + label: 'Dismiss', + onPressed: () {}, + ), + ), ); } } finally {