Stop the back function removing the claim_id from the URI
This commit is contained in:
parent
f395d7153a
commit
7572c9a051
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ window.addEventListener("popstate", (event, param) => {
|
|||
let action;
|
||||
|
||||
if (hash !== "") {
|
||||
const url = hash.split("#")[1];
|
||||
const url = hash.replace(/^#/, "");
|
||||
const { params, scrollY } = event.state || {};
|
||||
const queryString = toQueryString(params);
|
||||
|
||||
|
|
Loading…
Reference in a new issue