From 67ff558dbde1e261fc0aba8cda0fbea1748bb9b3 Mon Sep 17 00:00:00 2001 From: plondon Date: Mon, 2 Aug 2021 12:02:55 -0400 Subject: [PATCH] fix(erc20): at bounds is a boolean, should default to false --- packages/blockchain-wallet-v4/src/redux/data/eth/selectors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/blockchain-wallet-v4/src/redux/data/eth/selectors.js b/packages/blockchain-wallet-v4/src/redux/data/eth/selectors.js index 181dd38de76..786cf8ae5e8 100755 --- a/packages/blockchain-wallet-v4/src/redux/data/eth/selectors.js +++ b/packages/blockchain-wallet-v4/src/redux/data/eth/selectors.js @@ -73,7 +73,7 @@ export const getErc20Transactions = (state, token) => { return path([dataPath, 'eth', 'transactions', token])(state) || Remote.NotAsked } export const getErc20TransactionsAtBound = (state, token) => { - return path([dataPath, 'eth', 'transactions_at_bound', token])(state) || Remote.NotAsked + return path([dataPath, 'eth', 'transactions_at_bound', token])(state) || false } export const getErc20TransactionHistory = (state, token) => { return path([dataPath, 'eth', 'transaction_history', token])(state) || Remote.NotAsked