Skip to content

Commit ec48647

Browse files
committed
Clean up comments
1 parent c6a51f1 commit ec48647

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/pages-conditional/wallets/index.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,6 @@ const WalletsPage = ({ data }) => {
336336
setWallets(randomWallets)
337337
}, [data])
338338

339-
// cryptoCurious === 4 random wallets,
340-
// filtered by `has_card_deposits` || `has_explore_dapps`
341339
const cryptoCurious = wallets
342340
.filter((wallet) => {
343341
return (
@@ -348,12 +346,9 @@ const WalletsPage = ({ data }) => {
348346
})
349347
.slice(0, 4)
350348

351-
// cryptoConverted === hardware wallets & random wallets
352-
// filtered by `has_high_volume_purchases` || `has_limits_protection` || `has_multisig`
353349
const hardwareWallets = wallets.filter(
354350
(wallet) => wallet.has_hardware === "TRUE"
355351
)
356-
357352
const whaleWallets = wallets
358353
.filter((wallet) => {
359354
return (
@@ -363,7 +358,6 @@ const WalletsPage = ({ data }) => {
363358
)
364359
})
365360
.slice(0, 4 - hardwareWallets.length)
366-
367361
const cryptoConverted = Array.prototype.concat(hardwareWallets, whaleWallets)
368362

369363
return (

0 commit comments

Comments
 (0)