From e0f757f0bc332346bc88917e352849b7e5a02892 Mon Sep 17 00:00:00 2001 From: julian Date: Wed, 30 Nov 2022 08:55:58 -0600 Subject: [PATCH] desktop show wallet name instead of "Current receiving" for My Stack contact address details labelling --- .../home/address_book_view/subwidgets/desktop_address_card.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ),