fix: Next path gets lost after selecting hns.id domain
All checks were successful
Build Docker / Build Docker (push) Successful in 30s

This commit is contained in:
2024-06-14 15:51:28 +10:00
parent 17d01b0cc6
commit ab3ab6d7c4
2 changed files with 7 additions and 1 deletions

View File

@@ -213,7 +213,7 @@
<script>
function HNSIDLoginSelect() {
var selectedNFT = document.getElementById("nftDropdown").value;
window.location.href = "/hnsid/" + selectedNFT;
window.location.href = "/hnsid/" + selectedNFT + window.location.search;
}
</script>