diff --git a/MidrandBookshop/Components/Layout/MainLayout.razor b/MidrandBookshop/Components/Layout/MainLayout.razor index fde5e09..4b58446 100644 --- a/MidrandBookshop/Components/Layout/MainLayout.razor +++ b/MidrandBookshop/Components/Layout/MainLayout.razor @@ -165,13 +165,6 @@ } - @* - - - - - Log In - *@ diff --git a/MidrandBookshop/Components/Pages/Profile.razor b/MidrandBookshop/Components/Pages/Profile.razor index a6b1e5f..62ca532 100644 --- a/MidrandBookshop/Components/Pages/Profile.razor +++ b/MidrandBookshop/Components/Pages/Profile.razor @@ -83,71 +83,6 @@ } - @*
-
-
Order History
-
- -
- - - - - - - - - - - - - - @if (orderHistory != null) - { - @foreach (var order in orderHistory) - { - - - - - - - - - - } - } - else - { - - - - } - -
Order IDTitleDateAddressStatusTotalInvoice
@order.OrderId - - @order.DisplayTitle - - @order.OrderDate.ToString("MMM dd, yyyy") - - - - - @order.ShippingAddressName - - - - @order.Status - - R @order.Total.ToString("N2") - -
Loading order history...
-
-
*@