Skip to content

Commit

Permalink
Use same order for filters as icons in card
Browse files Browse the repository at this point in the history
  • Loading branch information
ekzyis committed Nov 21, 2024
1 parent 413fd1c commit a1f6f21
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pages/settings/wallets/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,18 +93,18 @@ export default function Wallet ({ ssrData }) {
</Link>
</div>
<div className={styles.walletFilters}>
<BootstrapForm.Check
inline
label={<span><SendIcon width={16} height={16} /> send</span>}
onChange={onFilterChange('send')}
checked={filter.send}
/>
<BootstrapForm.Check
inline
label={<span><RecvIcon width={16} height={16} /> receive</span>}
onChange={onFilterChange('receive')}
checked={filter.receive}
/>
<BootstrapForm.Check
inline
label={<span><SendIcon width={16} height={16} /> send</span>}
onChange={onFilterChange('send')}
checked={filter.send}
/>
</div>
<div className={styles.walletGrid} onDragEnd={onDragEnd}>
{wallets
Expand Down

0 comments on commit a1f6f21

Please sign in to comment.