Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
Add space in casting
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyawzrd committed Nov 10, 2020
1 parent 775ef88 commit 1859a3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public override async Task MergeWithCartAsync(ShoppingCart cart)

foreach (var item in group.Items)
{
var newItem = (LineItem)item.Clone();
var newItem = (LineItem) item.Clone();
newItem.ConfiguredGroupId = newGroup.Id;
var existingLineItem = cart.Items.FirstOrDefault(li => li.ProductId.EqualsInvariant(newItem.ProductId));
if (existingLineItem != null)
Expand Down

0 comments on commit 1859a3d

Please sign in to comment.