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

@@ -45,7 +45,7 @@ const DetalleSeccion = ({ seccion, categoriaId, onReset }: { seccion: SeccionGeo
const { data: resultadosDetalle, isLoading, error } = useQuery<ResultadoDetalleSeccion[]>({
queryKey: ['detalleSeccion', seccionId, categoriaId],
queryFn: () => getDetalleSeccion(seccionId!, categoriaId),
queryFn: () => getDetalleSeccion(1,seccionId!, categoriaId),
enabled: !!seccionId,
});