diff --git a/frontend/src/components/NewDashboard.js b/frontend/src/components/NewDashboard.js index 840fb26c..4533672d 100644 --- a/frontend/src/components/NewDashboard.js +++ b/frontend/src/components/NewDashboard.js @@ -105,7 +105,9 @@ const NewDashboard = (props) => { const filterFn = (item, inputValue) => (item.subscription_type_id === "ethereum_blockchain" || - item.subscription_type_id === "polygon_blockchain") && + item.subscription_type_id === "polygon_blockchain" || + item.subscription_type_id === "polygon_smartcontract" || + item.subscription_type_id === "polygon_smartcontract") && (!inputValue || item.address.toUpperCase().includes(inputValue.toUpperCase()) || item.label.toUpperCase().includes(inputValue.toUpperCase()));