diff options
| author | 2026-03-29 00:54:21 +0800 | |
|---|---|---|
| committer | 2026-03-29 00:54:21 +0800 | |
| commit | 97fe5046f68b5e4ee5f750945bcc39a27f5eb37b (patch) | |
| tree | b5263ff32f888a0631fe4ae8a22bcbb7a80ed1f7 /packages/ui/src/components/sidebar.tsx | |
| parent | 2412f7a3a626fc3b9e7b59ce1fc900468b792972 (diff) | |
| download | DropOut-97fe5046f68b5e4ee5f750945bcc39a27f5eb37b.tar.gz DropOut-97fe5046f68b5e4ee5f750945bcc39a27f5eb37b.zip | |
chore(ui): refactor effect instance check
Diffstat (limited to 'packages/ui/src/components/sidebar.tsx')
| -rw-r--r-- | packages/ui/src/components/sidebar.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/ui/src/components/sidebar.tsx b/packages/ui/src/components/sidebar.tsx index d81156f..e615274 100644 --- a/packages/ui/src/components/sidebar.tsx +++ b/packages/ui/src/components/sidebar.tsx @@ -23,10 +23,6 @@ function NavItem({ Icon, label, to }: NavItemProps) { const location = useLocation(); const isActive = location.pathname === to; - const handleClick = () => { - navigate(to); - }; - return ( <Button variant="ghost" @@ -35,7 +31,7 @@ function NavItem({ Icon, label, to }: NavItemProps) { isActive && "relative bg-accent", )} size="lg" - onClick={handleClick} + onClick={() => navigate(to)} > <Icon className="size-5" strokeWidth={isActive ? 2.5 : 2} /> <span className="hidden lg:block text-sm relative z-10">{label}</span> @@ -185,7 +181,11 @@ export function Sidebar() { <div className="w-full lg:px-3 flex-1 flex flex-col justify-end"> <DropdownMenu> - <DropdownMenuTrigger render={renderUserAvatar()} className="w-full"> + <DropdownMenuTrigger + render={renderUserAvatar()} + nativeButton={false} + className="w-full" + > Open </DropdownMenuTrigger> <DropdownMenuContent align="end" side="right" sideOffset={20}> |