Skip to content

Commit

Permalink
chore: remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmahidalgo committed Oct 18, 2024
1 parent 900f88b commit b565970
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion webapp/src/components/BuyPage/BuyNFTModal/BuyNFTModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down
1 change: 0 additions & 1 deletion webapp/src/modules/asset/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down
1 change: 0 additions & 1 deletion webapp/src/modules/order/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b565970

Please sign in to comment.