diff --git a/src/components/ui/resizable.tsx b/src/components/ui/resizable.tsx index 171d573..2bdd047 100644 --- a/src/components/ui/resizable.tsx +++ b/src/components/ui/resizable.tsx @@ -6,6 +6,7 @@ import { cn } from "@/lib/utils" function ResizablePanelGroup({ className, + style, ...props }: React.ComponentProps) { return ( @@ -14,6 +15,7 @@ function ResizablePanelGroup({ "flex h-full w-full data-[panel-group-direction=vertical]:flex-col", className )} + style={{ ...style, overflow: "clip" }} {...props} /> )