Remove address parameter from URL when updating transaction hash for sharing

This commit is contained in:
void-57 2025-08-14 00:36:55 +05:30
parent bde6def8b4
commit bce7df261c

View File

@ -2005,6 +2005,7 @@ async function checkTransactionDetails() {
// Update URL for sharing
const currentUrl = new URL(window.location);
currentUrl.searchParams.delete("address");
currentUrl.searchParams.set("tx", txHash);
window.history.pushState({}, "", currentUrl);