diff --git a/LiteCharms.Features.MidrandBooks/Orders/OrderService.cs b/LiteCharms.Features.MidrandBooks/Orders/OrderService.cs index 225f76d..d0bb34a 100644 --- a/LiteCharms.Features.MidrandBooks/Orders/OrderService.cs +++ b/LiteCharms.Features.MidrandBooks/Orders/OrderService.cs @@ -215,7 +215,7 @@ public sealed class OrderService(IDbContextFactory contex return orderItems.Count > 0 ? Result.Ok(orderItems.Select(i => i.ToModel()).ToArray()) - : Result.Fail("Order item not found or failed to remove."); + : Result.Fail($"Order items not found for order ID {orderId}"); } catch (Exception ex) {