From 2a42e1010fc3138a4e6e5df60450a2b577620fa5 Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Fri, 12 Dec 2025 21:57:58 +0100 Subject: [PATCH] fix error --- PyroFetes/Endpoints/Quotations/UpdateQuotationEndpoint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyroFetes/Endpoints/Quotations/UpdateQuotationEndpoint.cs b/PyroFetes/Endpoints/Quotations/UpdateQuotationEndpoint.cs index d59df4d2..3b1f47be 100644 --- a/PyroFetes/Endpoints/Quotations/UpdateQuotationEndpoint.cs +++ b/PyroFetes/Endpoints/Quotations/UpdateQuotationEndpoint.cs @@ -28,7 +28,7 @@ public class UpdateQuotationEndpoint( } quotation.ConditionsSale = req.ConditionsSale; - quotation.Message = req.Message; + quotation.Message = req.Message; await quotationsRepository.UpdateAsync(quotation, ct); await Send.OkAsync(mapper.Map(quotation), ct);