diff --git a/lib/pages_desktop_specific/home/address_book_view/subwidgets/desktop_address_card.dart b/lib/pages_desktop_specific/home/address_book_view/subwidgets/desktop_address_card.dart index 4d58dc474..ad9310df2 100644 --- a/lib/pages_desktop_specific/home/address_book_view/subwidgets/desktop_address_card.dart +++ b/lib/pages_desktop_specific/home/address_book_view/subwidgets/desktop_address_card.dart @@ -49,7 +49,7 @@ class DesktopAddressCard extends StatelessWidget { crossAxisAlignment: CrossAxisAlignment.start, children: [ SelectableText( - "${entry.label} (${entry.coin.ticker})", + "${contactId == "default" ? entry.other! : entry.label} (${entry.coin.ticker})", style: STextStyles.desktopTextExtraExtraSmall(context).copyWith( color: Theme.of(context).extension()!.textDark, ),