Skip to content

Commit

Permalink
fix: remove sidebar collapsible (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfrancisco authored Nov 27, 2024
1 parent fe213fc commit 625ec3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions apps/engine/src/modules/app-layout/app-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {
Separator,
SidebarInset,
SidebarProvider,
SidebarTrigger,
} from '@ds-project/components';
import { BreadcrumbNav } from './breadcrumb-nav';
import { AppSidebar } from './app-sidebar';
Expand All @@ -20,8 +19,8 @@ export function AppLayout({
<SidebarInset>
<header className="flex h-16 shrink-0 items-center gap-2 transition-[width,height] ease-linear group-has-[[data-collapsible=icon]]/sidebar-wrapper:h-12">
<div className="flex items-center gap-2 px-4">
<SidebarTrigger className="-ml-1" />
<Separator orientation="vertical" className="mr-2 h-4" />
{/* <SidebarTrigger className="-ml-1" /> */}
{/* <Separator orientation="vertical" className="mr-2 h-4" /> */}
<BreadcrumbNav />
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion apps/engine/src/modules/app-layout/app-sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const groupItems = [

export function AppSidebar({ email }: { email: string }) {
return (
<Sidebar collapsible="icon">
<Sidebar collapsible="none" className="h-screen">
<SidebarHeader>
<SidebarMenu>
<SidebarMenuItem>
Expand Down

0 comments on commit 625ec3d

Please sign in to comment.