From f8747bd506039ab5ea887fa1522c0dcfad1d887b Mon Sep 17 00:00:00 2001 From: Victor Gerbrands Date: Thu, 4 May 2023 13:38:03 +0200 Subject: [PATCH] refactor: small cleanup --- components/cart/delete-item-button.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/components/cart/delete-item-button.tsx b/components/cart/delete-item-button.tsx index 8124353ed..397514198 100644 --- a/components/cart/delete-item-button.tsx +++ b/components/cart/delete-item-button.tsx @@ -13,7 +13,6 @@ export default function DeleteItemButton({ item }: { item: CartItem }) { async function handleRemove() { setRemoving(true); - console.log(item.id); const response = await fetch(`/api/cart?lineItemId=${item.id}`, { method: 'DELETE' });