Skip to content

Commit

Permalink
fix(user-avatar-button.tsx): hide 'Planos' menu item on large screens…
Browse files Browse the repository at this point in the history
… for improved UI
  • Loading branch information
neopromic committed Jan 9, 2025
1 parent 67c08f8 commit 9389409
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/_components/user-avatar-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ const UserAvatarButton = () => {
>
Dashboard
</DropdownMenuItem>
<DropdownMenuItem onClick={() => router.push("/subscriptions")}>
<DropdownMenuItem
className="lg:hidden"
onClick={() => router.push("/subscriptions")}
>
Planos
</DropdownMenuItem>
<DropdownMenuItem
Expand Down

0 comments on commit 9389409

Please sign in to comment.