Skip to content

Commit efaa859

Browse files
committed
Update search text
1 parent 6644967 commit efaa859

File tree

2 files changed

+6
-1
lines changed
  • app/components/Views/confirmations/components/send/asset
  • locales/languages

2 files changed

+6
-1
lines changed

app/components/Views/confirmations/components/send/asset/asset.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,11 @@ export const Asset: React.FC<AssetProps> = (props = {}) => {
125125
<TextFieldSearch
126126
value={searchQuery}
127127
onChangeText={setSearchQuery}
128-
placeholder={strings('send.search_tokens_and_nfts')}
128+
placeholder={
129+
hideNfts
130+
? strings('send.search_tokens')
131+
: strings('send.search_tokens_and_nfts')
132+
}
129133
size={TextFieldSize.Lg}
130134
showClearButton={searchQuery.length > 0}
131135
onPressClearButton={clearSearch}

locales/languages/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -602,6 +602,7 @@
602602
"network_not_found_title": "Network not found",
603603
"network_not_found_description": "Network with chain id {{chain_id}} not found in your wallet. Please add the network first.",
604604
"network_missing_id": "Missing chain id.",
605+
"search_tokens":"Search tokens",
605606
"search_tokens_and_nfts": "Search tokens and NFTs",
606607
"tokens": "Tokens",
607608
"nfts": "NFTs",

0 commit comments

Comments
 (0)