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)