From 05c0f8a66e463251e886c0806e42ac7d2bb958bc Mon Sep 17 00:00:00 2001 From: ekzyis Date: Mon, 8 Jul 2024 13:14:30 +0200 Subject: [PATCH] Remove console.log --- components/wallet/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/wallet/index.js b/components/wallet/index.js index 02c1581a..72edd2c3 100644 --- a/components/wallet/index.js +++ b/components/wallet/index.js @@ -276,8 +276,6 @@ export function walletPrioritySort (w1, w2) { // since that's the order in which autowithdrawals are attempted if (w1.id && w2.id) return Number(w1.id) - Number(w2.id) - console.log('w1', w1, 'w2', w2) - // else we will use the card title as tie breaker return w1.card.title < w2.card.title ? -1 : 1 }