From ebdb4d4ea402e65ecb107644ddd1b493ed592afc Mon Sep 17 00:00:00 2001 From: Thomas Roberts Date: Tue, 13 Dec 2022 23:20:40 +0000 Subject: [PATCH] Remove copilot comment --- assets/js/data/cart/notify-quantity-changes.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/js/data/cart/notify-quantity-changes.ts b/assets/js/data/cart/notify-quantity-changes.ts index a82db752ca0..f8138f575b5 100644 --- a/assets/js/data/cart/notify-quantity-changes.ts +++ b/assets/js/data/cart/notify-quantity-changes.ts @@ -11,8 +11,7 @@ const notifyIfQuantityLimitsChanged = ( oldCart: Cart, newCart: Cart ) => { return item.key === cartItem.key; } ); - // If getCartData has not finished resolving, then this is the first load. We should also check for min/max - // quantity discrepancies here. + // If getCartData has not finished resolving, then this is the first load. const isFirstLoad = oldCart.items.length === 0; // Item has been removed, we don't need to do any more checks.