This commit is contained in:
Luiz Silva 2025-09-26 09:45:46 -03:00
parent 7dd417a9fb
commit 556ea198e8
4 changed files with 6 additions and 6 deletions

View file

@ -94,13 +94,13 @@ class TipagemRotas {
typeof window !== "undefined" ? window.location.href : "http://localhost"
);
const query = url.searchParams;
const queryObj = Object.fromEntries(query.entries());
let queryObj = Object.fromEntries(query.entries());
const hash = url.hash;
if (hash) {
const hashObj = Object.fromEntries(
new URLSearchParams(hash.slice(1)).entries()
);
return { ...queryObj, ...hashObj };
queryObj = { ...queryObj, ...hashObj };
}
for (const chave in queryObj) {
try {