diff --git a/apps/infoalloggi/src/providers/RicercaProvider.tsx b/apps/infoalloggi/src/providers/RicercaProvider.tsx index bba3b37..0a8364a 100644 --- a/apps/infoalloggi/src/providers/RicercaProvider.tsx +++ b/apps/infoalloggi/src/providers/RicercaProvider.tsx @@ -31,13 +31,13 @@ type RicercaUrlParams = { }; export const paramsMapping = { - map: "m", - tipo: "t", - comune: "c", - consegna: "f", - minBudget: "bmin", - maxBudget: "bmax", - sort: "s", + map: "map", + tipo: "tipo", + comune: "comune", + consegna: "consegna", + minBudget: "budget_min", + maxBudget: "budget_max", + sort: "sort", } as const; export const buildRicercaUrl = (params: Partial): string => {