Merge pull request #74 from satoshilabs/fix-multiple-same-tokens

fix: disallow adding multiple tokens of same type in AccountSummary
pull/60/head
Vladimir Volek 6 years ago committed by GitHub
commit 1c2a4fb3f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);

Loading…
Cancel
Save