From 10abe82b83bf0cf4efe1e147da6a679e02316678 Mon Sep 17 00:00:00 2001 From: Victor Turgeon <76506447+Medenos@users.noreply.github.com> Date: Thu, 8 Dec 2022 19:42:00 -0500 Subject: [PATCH] remove console.logs --- .../grosses-mitaines-ui/src/components/PaymentForm.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/GrossesMitaines/grosses-mitaines-ui/src/components/PaymentForm.js b/GrossesMitaines/grosses-mitaines-ui/src/components/PaymentForm.js index 7e35e44..2d413c6 100644 --- a/GrossesMitaines/grosses-mitaines-ui/src/components/PaymentForm.js +++ b/GrossesMitaines/grosses-mitaines-ui/src/components/PaymentForm.js @@ -55,7 +55,6 @@ const PaymentForm = ({ cost, invoice }) => { .then((result) => { if (!result.error) { - console.log(invoice); invoice.token = result.token.id; invoice.description = `Payement de ${cost} à GM`; invoice.amountInCents = cost; @@ -76,7 +75,6 @@ const PaymentForm = ({ cost, invoice }) => { }, body: json }).then((response) => { - console.log(response); if (response.ok) { mySwal.fire({ title: 'Commande envoyée avec succès!',