Merge pull request #7 from void-57/main

Remove address parameter from URL when updating transaction hash for sharing
This commit is contained in:
Aniruddha 2025-08-14 00:38:28 +05:30 committed by GitHub
commit a27ac09c16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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);