[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-03-16 21:33:40 +00:00
committed by GitHub
parent dad49ec96f
commit 4871520dbb
2 changed files with 4 additions and 4 deletions

View File

@@ -571,9 +571,7 @@ function SidebarLogo() {
<SidebarMenu
className={cn(
"flex gap-2",
isCollapsed
? "flex-col"
: "flex-row justify-between items-center",
isCollapsed ? "flex-col" : "flex-row justify-between items-center",
)}
>
{/* Organization Logo and Selector */}

View File

@@ -213,7 +213,9 @@ const Sidebar = React.forwardRef<
}
side={side}
>
<div className="flex h-full w-full flex-col overflow-hidden">{children}</div>
<div className="flex h-full w-full flex-col overflow-hidden">
{children}
</div>
</SheetContent>
</Sheet>
);