Skip to content

Commit

Permalink
har har
Browse files Browse the repository at this point in the history
  • Loading branch information
thebrandonlucas committed Nov 2, 2023
1 parent 1a11a32 commit 98e9e47
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
import WalletCard from '../features/WalletCard.svelte';
const privateWallets = WALLET_ADOPTION.filter((wallet) => wallet.sending || wallet.sending);
const surveilledWallets = WALLET_ADOPTION.filter((wallet) => !wallet.sending && !wallet.sending);
const surveillableWallets = WALLET_ADOPTION.filter(
(wallet) => !wallet.sending && !wallet.sending
);
</script>

<div class="w-4/5 flex flex-col">
Expand Down Expand Up @@ -290,7 +292,7 @@
</div>
<div class="flex gap-12 max-md:flex-col">
<WalletCard wallets={privateWallets} />
<WalletCard bad wallets={surveilledWallets} />
<WalletCard bad wallets={surveillableWallets} />
</div>
</section>
<section id="future-plans" class="flex flex-col pt-24">
Expand Down

0 comments on commit 98e9e47

Please sign in to comment.