diff --git a/lib/routes/home/widgets/payments_list/dialog/payment_details_dialog_description.dart b/lib/routes/home/widgets/payments_list/dialog/payment_details_dialog_description.dart index 0ddcc739..385b95bd 100644 --- a/lib/routes/home/widgets/payments_list/dialog/payment_details_dialog_description.dart +++ b/lib/routes/home/widgets/payments_list/dialog/payment_details_dialog_description.dart @@ -14,8 +14,9 @@ class PaymentDetailsDialogDescription extends StatelessWidget { Widget build(BuildContext context) { final themeData = Theme.of(context); - final description = paymentMinutiae.description; - if (description.isEmpty) { + final title = paymentMinutiae.title.replaceAll("\n", " "); + final description = paymentMinutiae.description.trim(); + if (description.isEmpty || title == description) { return Container(); }