diff --git a/apps/web/src/app/editor/[project_id]/page.tsx b/apps/web/src/app/editor/[project_id]/page.tsx index db17dd4..b3641e3 100644 --- a/apps/web/src/app/editor/[project_id]/page.tsx +++ b/apps/web/src/app/editor/[project_id]/page.tsx @@ -55,9 +55,9 @@ export default function Editor() { return ( -
+
-
+
{/* Main content area */} diff --git a/apps/web/src/components/ui/resizable.tsx b/apps/web/src/components/ui/resizable.tsx index 8f3cb2e..0b9a955 100644 --- a/apps/web/src/components/ui/resizable.tsx +++ b/apps/web/src/components/ui/resizable.tsx @@ -29,11 +29,17 @@ const ResizableHandle = ({ }) => ( div]:rotate-90", className )} {...props} - /> + > + {withHandle && ( +
+ +
+ )} +
); export { ResizablePanelGroup, ResizablePanel, ResizableHandle };