This commit is contained in:
Luiz Silva 2025-09-08 14:21:34 -03:00
parent 3b45b82654
commit 7e7cf8e7df
4 changed files with 4 additions and 10 deletions

View file

@ -63,10 +63,7 @@ class TipagemRotas {
url.search = "";
const queryKeys = Object.entries(query);
for (const [key, value] of queryKeys) {
url.searchParams.set(
String(key),
encodeURIComponent(JSON.stringify(value))
);
url.searchParams.set(String(key), JSON.stringify(value));
}
url.hash = "";
if (usarComoHash) {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "p-comuns",
"version": "0.224.0",
"version": "0.225.0",
"description": "",
"main": "./dist-back/index.js",
"module": "./dist-front/index.mjs",

View file

@ -74,10 +74,7 @@ export class TipagemRotas<T extends { [q: string]: any }> {
const queryKeys = Object.entries(query)
for (const [key, value] of queryKeys) {
url.searchParams.set(
String(key),
encodeURIComponent(JSON.stringify(value)),
)
url.searchParams.set(String(key), JSON.stringify(value))
}
url.hash = ""