From b565970c1f7251c4cc552ad2f584ae5b140c2fc0 Mon Sep 17 00:00:00 2001 From: Juanma Hidalgo Date: Fri, 18 Oct 2024 14:32:26 +0200 Subject: [PATCH] chore: remove console.logs --- webapp/src/components/BuyPage/BuyNFTModal/BuyNFTModal.tsx | 1 - webapp/src/modules/asset/utils.ts | 1 - webapp/src/modules/order/sagas.ts | 1 - 3 files changed, 3 deletions(-) diff --git a/webapp/src/components/BuyPage/BuyNFTModal/BuyNFTModal.tsx b/webapp/src/components/BuyPage/BuyNFTModal/BuyNFTModal.tsx index ece0c6b9c..bc8bc8a29 100644 --- a/webapp/src/components/BuyPage/BuyNFTModal/BuyNFTModal.tsx +++ b/webapp/src/components/BuyPage/BuyNFTModal/BuyNFTModal.tsx @@ -57,7 +57,6 @@ const BuyNFTModal = (props: Props) => { (alreadyAuthorized: boolean = true) => { if (isBuyWithCardPage) { analytics.track(events.CLICK_BUY_NFT_WITH_CARD) - console.log('order: ', order) return onExecuteOrderWithCard(nft, order || undefined) } diff --git a/webapp/src/modules/asset/utils.ts b/webapp/src/modules/asset/utils.ts index c3ae928d3..2474545ea 100644 --- a/webapp/src/modules/asset/utils.ts +++ b/webapp/src/modules/asset/utils.ts @@ -110,7 +110,6 @@ export function* buyAssetWithCard(asset: Asset, order?: Order) { return } - console.log('order1: ', order) yield put(openModal('BuyWithCardExplanationModal', { asset, order })) const { close } = (yield race({ diff --git a/webapp/src/modules/order/sagas.ts b/webapp/src/modules/order/sagas.ts index 8fba9b0c4..9424d5ae8 100644 --- a/webapp/src/modules/order/sagas.ts +++ b/webapp/src/modules/order/sagas.ts @@ -177,7 +177,6 @@ export function* orderSaga(tradeService: TradeService) { const { nft } = action.payload const order: Order = yield select(getCurrentOrder) - console.log('order in handleExecuteOrderWithCardRequest: ', order) try { yield call(buyAssetWithCard, nft, order)