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' });