Skip to content

Commit

Permalink
fix(suite): Hide default accounts by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jvaclavik committed Jan 15, 2025
1 parent ed201cf commit ef4168e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const AccountsList = ({ onItemClick }: AccountListProps) => {
return (
<Column gap={spacings.xs} margin={{ bottom: spacings.lg }}>
{buildGroup('coinjoin', coinjoinAccounts)}
{buildGroup('normal', normalAccounts, coinjoinAccounts.length === null)}
{buildGroup('normal', normalAccounts, coinjoinAccounts.length === 0)}
{buildGroup('taproot', taprootAccounts)}
{buildGroup('segwit', segwitAccounts)}
{buildGroup('legacy', legacyAccounts)}
Expand Down

0 comments on commit ef4168e

Please sign in to comment.