diff --git a/components/chainSelect/ChainSelect.tsx b/components/chainSelect/ChainSelect.tsx index 7eaf0d9..b9aaca4 100644 --- a/components/chainSelect/ChainSelect.tsx +++ b/components/chainSelect/ChainSelect.tsx @@ -174,7 +174,7 @@ const ChainSelect = () => { const getNodeFromArray = async (nodeArray: { address: string; provider: string }[]) => { // only return https connections const secureNodes = nodeArray - .filter((node) => node.address.includes("https://")) + .filter((node) => node.address.startsWith("https://")) .map(({ address }) => address); if (secureNodes.length === 0) {