Fix extra redirect

This commit is contained in:
Willian Mitsuda 2022-01-31 16:28:08 -03:00
parent 5abf171be9
commit 0f35d205e4
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ const AddressTransactionByNonce: React.FC<AddressTransactionByNonceProps> = ({
); );
} }
if (txHash) { if (txHash) {
navigate(transactionURL(txHash)); navigate(transactionURL(txHash), { replace: true });
} }
return <StandardFrame />; return <StandardFrame />;
}; };