Skip to content

Commit a1f2c69

Browse files
Merge pull request #66 from cypherstack/ui-fixes
hide "Current Receiving" on My Stack (self) contact addresses
2 parents b8e12e0 + 2e2c70f commit a1f2c69

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

lib/pages/address_book_views/subviews/contact_popup.dart

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -214,14 +214,12 @@ class ContactPopUp extends ConsumerWidget {
214214
style:
215215
STextStyles.itemSubtitle12,
216216
),
217-
if (contact.id == "default")
218-
const SizedBox(
219-
height: 2,
217+
if (contact.id != "default")
218+
Text(
219+
"${e.label} (${e.coin.ticker})",
220+
style:
221+
STextStyles.itemSubtitle12,
220222
),
221-
Text(
222-
"${e.label} (${e.coin.ticker})",
223-
style: STextStyles.itemSubtitle12,
224-
),
225223
const SizedBox(
226224
height: 2,
227225
),

0 commit comments

Comments
 (0)