Skip to content

Commit b2eb193

Browse files
committed
LIVE-2828 - LLM - Receive flow fix issue on token account creation name
1 parent 8040d39 commit b2eb193

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.changeset/two-olives-push.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"live-mobile": patch
3+
---
4+
5+
LLM - Receive flow - fix issue on token account creation name

apps/ledger-live-mobile/src/screens/ReceiveFunds/02-AddAccount.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,8 @@ function AddAccountsAccounts({ navigation, route }: Props) {
173173
account={acc}
174174
onPress={() => selectAccount(account)}
175175
AccountSubTitle={
176-
acc.parentAccount || acc.token?.parentCurrency ? (
177-
<LText color="neutral.c70">
178-
{(acc.parentAccount || acc.token.parentCurrency).name}
179-
</LText>
176+
currency.type === "TokenCurrency" ? (
177+
<LText color="neutral.c70">{account.name}</LText>
180178
) : null
181179
}
182180
/>

0 commit comments

Comments
 (0)