From bce7df261c5599f8528d07f797d2fecae85351f0 Mon Sep 17 00:00:00 2001 From: void-57 Date: Thu, 14 Aug 2025 00:36:55 +0530 Subject: [PATCH] Remove address parameter from URL when updating transaction hash for sharing --- scripts/wallet.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/wallet.js b/scripts/wallet.js index 52de769..eaa7521 100644 --- a/scripts/wallet.js +++ b/scripts/wallet.js @@ -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);