From 6399bda68983f50d4c9add2acc0495e33cacd31a Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Fri, 23 Jan 2026 13:55:59 +0100 Subject: [PATCH] fix: update paramsMapping keys for clarity and consistency --- apps/infoalloggi/src/providers/RicercaProvider.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 => {