diff --git a/lib/pages/address_book_views/subviews/contact_popup.dart b/lib/pages/address_book_views/subviews/contact_popup.dart index f433a85b7..b1a926e33 100644 --- a/lib/pages/address_book_views/subviews/contact_popup.dart +++ b/lib/pages/address_book_views/subviews/contact_popup.dart @@ -214,14 +214,12 @@ class ContactPopUp extends ConsumerWidget { style: STextStyles.itemSubtitle12, ), - if (contact.id == "default") - const SizedBox( - height: 2, + if (contact.id != "default") + Text( + "${e.label} (${e.coin.ticker})", + style: + STextStyles.itemSubtitle12, ), - Text( - "${e.label} (${e.coin.ticker})", - style: STextStyles.itemSubtitle12, - ), const SizedBox( height: 2, ),