Remove console.log

This commit is contained in:
ekzyis 2024-07-08 13:14:30 +02:00
parent 80756f23a4
commit 05c0f8a66e
1 changed files with 0 additions and 2 deletions

View File

@ -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
}