From 6af1b16d212652120142d3aad6b8e0077e44fba0 Mon Sep 17 00:00:00 2001 From: w3bdesign <45217974+w3bdesign@users.noreply.github.com> Date: Tue, 23 May 2023 04:22:12 +0200 Subject: [PATCH] Remove debug --- resources/js/components/Checkout/OrderCheckout.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/resources/js/components/Checkout/OrderCheckout.vue b/resources/js/components/Checkout/OrderCheckout.vue index 2f560a85..9bab3188 100644 --- a/resources/js/components/Checkout/OrderCheckout.vue +++ b/resources/js/components/Checkout/OrderCheckout.vue @@ -80,7 +80,6 @@ const checkout = async () => { const { firstName, lastName, address, zipcode, city, state, email } = store.getCustomerDetails; - //localState.paymentIsProcessing = true; localState.paymentIsProcessing = false; const { paymentMethod, error } = @@ -123,10 +122,6 @@ const checkout = async () => { axios .post("/api/purchase", finalCustomerDetails) .then((response) => { - - console.log("Response ..: ", response) - - if (response.statusText === "Created") { localState.paymentIsProcessing = false; store.clearCart();