Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
scoxen1 committed Jun 6, 2024
1 parent f91ece2 commit 0578aa4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
</p>
</div>

@await Html.PartialAsync(@"/Views/Template/_ECommerceCustomerInfo.cshtml", Model.Cart.CheckoutUser);
@await Html.PartialAsync(@"/Views/Template/_ECommerceCustomerInfo.cshtml", _user);

<div>
<h2 class="mb-0" >Purchased Items</h2>
<hr class="compact blue"/>
@{
foreach (var item in Model.Cart.Items)
{
var purchaseItem = new PurchaseNotificationModel() { BaseUrl = Model.BaseUrl, CartItem = item, CheckoutUser = Model.Cart.CheckoutUser };
var purchaseItem = new PurchaseNotificationModel() { BaseUrl = Model.BaseUrl, CartItem = item, CheckoutUser = _user };
@await Html.PartialAsync(@"/Views/Template/_ECommerceCartItem.cshtml", purchaseItem);
}
}
Expand Down

0 comments on commit 0578aa4

Please sign in to comment.