diff --git a/src/ApiGateways/Web.Bff.Shopping/aggregator/Controllers/BasketController.cs b/src/ApiGateways/Web.Bff.Shopping/aggregator/Controllers/BasketController.cs index f2915694a..59550621b 100644 --- a/src/ApiGateways/Web.Bff.Shopping/aggregator/Controllers/BasketController.cs +++ b/src/ApiGateways/Web.Bff.Shopping/aggregator/Controllers/BasketController.cs @@ -17,7 +17,6 @@ public class BasketController : ControllerBase [HttpPost] [HttpPut] [ProducesResponseType(StatusCodes.Status400BadRequest)] - [ProducesResponseType(typeof(BasketData), StatusCodes.Status200OK)] public async Task> UpdateAllBasketAsync([FromBody] UpdateBasketRequest data) { if (data.Items == null || !data.Items.Any()) @@ -75,7 +74,6 @@ public class BasketController : ControllerBase [HttpPut] [Route("items")] [ProducesResponseType(StatusCodes.Status400BadRequest)] - [ProducesResponseType(typeof(BasketData), (int)HttpStatusCode.OK)] public async Task> UpdateQuantitiesAsync([FromBody] UpdateBasketItemsRequest data) { if (!data.Updates.Any())