From dd74136aad450c5b3b93916fdc3ffeb85d09e501 Mon Sep 17 00:00:00 2001 From: BestCodes <106822363+The-Best-Codes@users.noreply.github.com> Date: Sun, 18 Jan 2026 14:56:24 -0600 Subject: [PATCH] fix scrollbar flicker in sidebar animation (#6564) Signed-off-by: The-Best-Codes --- ui/desktop/src/components/ui/sidebar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/desktop/src/components/ui/sidebar.tsx b/ui/desktop/src/components/ui/sidebar.tsx index e1b4dd74..cb13e7a2 100644 --- a/ui/desktop/src/components/ui/sidebar.tsx +++ b/ui/desktop/src/components/ui/sidebar.tsx @@ -185,7 +185,7 @@ function Sidebar({ Sidebar Displays the mobile sidebar. -
{children}
+
{children}
); @@ -233,7 +233,7 @@ function Sidebar({
{children}
@@ -359,7 +359,7 @@ function SidebarContent({ className, ...props }: React.ComponentProps<'div'>) { data-slot="sidebar-content" data-sidebar="content" className={cn( - 'flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden', + 'flex min-h-0 flex-1 flex-col gap-2 overflow-y-auto overflow-x-hidden group-data-[collapsible=icon]:overflow-hidden', className )} {...props}