This commit is contained in:
Luiz Silva 2026-03-23 18:20:23 -03:00
parent a6b3b14753
commit e27bcd8e7c
14 changed files with 18 additions and 69 deletions

View file

@ -97,9 +97,7 @@ class TipagemRotas {
let queryObj = Object.fromEntries(query.entries());
const hash = url.hash;
if (hash) {
const hashObj = Object.fromEntries(
new URLSearchParams(hash.slice(1)).entries()
);
const hashObj = Object.fromEntries(new URLSearchParams(hash.slice(1)).entries());
queryObj = { ...queryObj, ...hashObj };
}
for (const chave in queryObj) {