From 0c7667bf26b1a810ef7adbeaeb77c7ba79b72016 Mon Sep 17 00:00:00 2001 From: aryabenade Date: Thu, 23 Apr 2026 00:13:37 +0530 Subject: [PATCH] remove console logs from checkout page --- src/pages/CheckoutPage.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pages/CheckoutPage.tsx b/src/pages/CheckoutPage.tsx index 8ee3100..f74b099 100644 --- a/src/pages/CheckoutPage.tsx +++ b/src/pages/CheckoutPage.tsx @@ -241,9 +241,7 @@ function CheckoutConfigCard({ const handleProceedToPayment = async () => { try { - console.log("Adding card to cart", cardBookingDetails); const response = await addCardToCart(cardBookingDetails); - console.log(response) const bookingId = response?.data?.id navigate(`/payment/${bookingId}`) } catch (error) {