1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-23 06:21:06 +00:00

Disallow adding tokens that are already added

This commit is contained in:
Vasek Mlejnsky 2018-09-21 11:31:13 +02:00
parent a848e35b69
commit 5e42466f99

View File

@ -131,7 +131,12 @@ const AccountSummary = (props: Props) => {
placeholder="Search for the token"
loadingMessage={() => 'Loading...'}
noOptionsMessage={() => 'Token not found'}
onChange={token => props.addToken(token, account)}
onChange={(token) => {
const isAdded = tokens.find(t => t.symbol === token.symbol);
if (!isAdded) {
props.addToken(token, account);
}
}}
loadOptions={input => props.loadTokens(input, account.network)}
formatOptionLabel={(option) => {
const isAdded = tokens.find(t => t.symbol === option.symbol);