File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
app/components/Views/confirmations/components/send/asset Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments