diff --git a/index.html b/index.html index 487b3b4..b0b7aec 100644 --- a/index.html +++ b/index.html @@ -2183,7 +2183,13 @@ const list = document.getElementById("searchedAddressesList"); if (!container || !list) return; - + const searchType = document.querySelector( + 'input[name="searchType"]:checked' + )?.value; + if (searchType === "hash") { + container.style.display = "none"; + return; + } if (addresses.length === 0) { container.style.display = "none"; return;