File tree 1 file changed +0
-6
lines changed
src/pages-conditional/wallets
1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -336,8 +336,6 @@ const WalletsPage = ({ data }) => {
336
336
setWallets ( randomWallets )
337
337
} , [ data ] )
338
338
339
- // cryptoCurious === 4 random wallets,
340
- // filtered by `has_card_deposits` || `has_explore_dapps`
341
339
const cryptoCurious = wallets
342
340
. filter ( ( wallet ) => {
343
341
return (
@@ -348,12 +346,9 @@ const WalletsPage = ({ data }) => {
348
346
} )
349
347
. slice ( 0 , 4 )
350
348
351
- // cryptoConverted === hardware wallets & random wallets
352
- // filtered by `has_high_volume_purchases` || `has_limits_protection` || `has_multisig`
353
349
const hardwareWallets = wallets . filter (
354
350
( wallet ) => wallet . has_hardware === "TRUE"
355
351
)
356
-
357
352
const whaleWallets = wallets
358
353
. filter ( ( wallet ) => {
359
354
return (
@@ -363,7 +358,6 @@ const WalletsPage = ({ data }) => {
363
358
)
364
359
} )
365
360
. slice ( 0 , 4 - hardwareWallets . length )
366
-
367
361
const cryptoConverted = Array . prototype . concat ( hardwareWallets , whaleWallets )
368
362
369
363
return (
You can’t perform that action at this time.
0 commit comments