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);