Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

LL-7265 - Make empty account tokens' names uppercase #2103

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/screens/Account/EmptyStateAccount.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ class EmptyStateAccount extends PureComponent<{
<LText semiBold color="darkBlue">
{account &&
account.currency &&
listTokenTypesForCryptoCurrency(mainAccount.currency).join(
", ",
)}
listTokenTypesForCryptoCurrency(mainAccount.currency)
.map(c => c?.toUpperCase() ?? c)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.join(", ")}
{"tokens"}
</LText>
</Trans>
Expand Down