diff --git a/Controllers/QuoteController.cs b/Controllers/QuoteController.cs
index 89d93a9..f2ae556 100644
--- a/Controllers/QuoteController.cs
+++ b/Controllers/QuoteController.cs
@@ -240,12 +240,12 @@ public class QuotesController : ControllerBase
///
/// Json with status
/// Quote id which will be deleted
- /// Returned on valid request
+ /// Returned on valid request
/// Returned when no such quote exists
[HttpDelete("{id}")]
[Authorize]
[EnableCors]
- [ProducesResponseType(204)]
+ [ProducesResponseType(200)]
[ProducesResponseType(typeof(ErrorDTO), 404)]
public async Task DeleteQuote(int id)
{