diff --git a/components/chainSelect/ChainSelect.js b/components/chainSelect/ChainSelect.js index 0c36c0d..372dbf7 100644 --- a/components/chainSelect/ChainSelect.js +++ b/components/chainSelect/ChainSelect.js @@ -58,7 +58,7 @@ const ChainSelect = () => { try { const res = await axios.get(url); const chains = res.data.filter((item) => { - return item.type == "dir" && item.name != ".github" && item.name != "testnets"; + return item.type == "dir" && !item.name.startsWith(".") && item.name != "testnets"; }); setChainArray(chains); const options = chains.map(({ name }, index) => {