Formatting (#2046)

This commit is contained in:
ekzyis 2025-03-31 09:06:38 -05:00 committed by GitHub
parent 8d4f99ea8d
commit 3568fc1c62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -108,7 +108,8 @@ export default function Wallet ({ ssrData }) {
checked={filter.send}
/>
</div>
{wallets
{
wallets
.filter(w => {
return (!filter.send || (filter.send && supportsSend(w))) &&
(!filter.receive || (filter.receive && supportsReceive(w)))
@ -138,9 +139,8 @@ export default function Wallet ({ ssrData }) {
/>
</div>
)
})
}
)}
</div>
</div>
</Layout>