From df593b704d3754075795c652ba6abef38f45db73 Mon Sep 17 00:00:00 2001
From: Kira
Date: Wed, 14 Sep 2022 11:28:56 -0700
Subject: [PATCH] Found the error preventing from the Shopping Cart from
loading; fixed. Confirmed that Remove from Cart works.
---
ShopOnline.Web/Pages/ProductDetails.razor | 4 ++--
ShopOnline.Web/Services/ShoppingCartService.cs | 5 +----
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/ShopOnline.Web/Pages/ProductDetails.razor b/ShopOnline.Web/Pages/ProductDetails.razor
index 867265f..80783d3 100644
--- a/ShopOnline.Web/Pages/ProductDetails.razor
+++ b/ShopOnline.Web/Pages/ProductDetails.razor
@@ -24,9 +24,9 @@ else
diff --git a/ShopOnline.Web/Services/ShoppingCartService.cs b/ShopOnline.Web/Services/ShoppingCartService.cs
index 023ff2a..98b80b1 100644
--- a/ShopOnline.Web/Services/ShoppingCartService.cs
+++ b/ShopOnline.Web/Services/ShoppingCartService.cs
@@ -82,9 +82,6 @@ namespace ShopOnline.Web.Services
}
}
- Task> IShoppingCartService.GetItems(int userId)
- {
- throw new NotImplementedException();
- }
+
}
}