Skip to content

Commit

Permalink
panel shift on reload bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Diivvuu committed Oct 17, 2024
1 parent 2fa7e79 commit 8ddc221
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/workspace/[workspaceId]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@ const layout = ({ children }: WorkSpaceIdLayoutProps) => {
className="bg-[#5e2c5f]"
>
<WorkspaceSidebar />
<div>Channels Siderbar</div>
<div>Channels Sidebar</div>
</ResizablePanel>
<ResizableHandle withHandle />
<ResizablePanel minSize={20}>{children}</ResizablePanel>
<ResizablePanel minSize={20} defaultSize={80}>
{children}
</ResizablePanel>
{showPanel && (
<>
<ResizableHandle withHandle />
Expand Down

0 comments on commit 8ddc221

Please sign in to comment.