Skip to content

Commit

Permalink
dont show line if one account
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzius committed Dec 19, 2024
1 parent 7508547 commit 7e23a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/shell/desktop/LeftNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function ProfileCard() {
)}
</Menu.Trigger>
<Menu.Outer>
{otherAccounts && (
{otherAccounts && otherAccounts.length > 0 && (
<>
<Menu.Group>
{otherAccounts?.map(other => (
Expand Down

0 comments on commit 7e23a7e

Please sign in to comment.