Skip to content

Commit

Permalink
Fix account selection overflow (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaut authored Sep 24, 2024
1 parent 795576c commit 73f47e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export const Header = () => {
<ChevronDown className="ml-2 h-4 w-4" />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent>
<DropdownMenuContent className="max-h-[calc(100vh-5rem)] overflow-auto">
{accounts.map((account, index) => (
<>
<DropdownMenuItem
Expand Down

0 comments on commit 73f47e8

Please sign in to comment.