Fix to Prod

This commit is contained in:
2025-10-01 11:59:15 -03:00
parent 63cc042eb4
commit e9b0eeb630
14 changed files with 155 additions and 30 deletions

View File

@@ -53,7 +53,7 @@ export const ConcejalesWidget = () => {
const { data: resultados, isLoading: isLoadingResultados } = useQuery<ResultadoTicker[]>({
queryKey: ['resultadosPorMunicipio', selectedMunicipio?.value, CATEGORIA_ID],
queryFn: () => getResultadosPorMunicipio(selectedMunicipio!.value, CATEGORIA_ID),
queryFn: () => getResultadosPorMunicipio(1,selectedMunicipio!.value, CATEGORIA_ID),
enabled: !!selectedMunicipio,
});