1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-07 14:50:52 +00:00

return full tokens array

This commit is contained in:
slowbackspace 2019-03-29 14:53:30 +01:00
parent de5478aed0
commit c0702d32a8

View File

@ -44,10 +44,7 @@ export const load = ($input: string, network: string): AsyncAction => async (
);
if (result.length > 0) {
// TODO: Temporary fix for async select
// async react-select starts getting very laggy
// when options is a large list (>200 items)
return result.slice(0, 100);
return result;
}
const info = await dispatch(BlockchainActions.getTokenInfo(input, network));