diff --git a/apps/client/src/pages/dashboard/resumes/page.tsx b/apps/client/src/pages/dashboard/resumes/page.tsx index 5ab2a472..4a2b3c09 100644 --- a/apps/client/src/pages/dashboard/resumes/page.tsx +++ b/apps/client/src/pages/dashboard/resumes/page.tsx @@ -49,7 +49,10 @@ export const ResumesPage = () => { - + diff --git a/libs/ui/src/components/scroll-area.tsx b/libs/ui/src/components/scroll-area.tsx index 04013a50..b85cee66 100644 --- a/libs/ui/src/components/scroll-area.tsx +++ b/libs/ui/src/components/scroll-area.tsx @@ -7,6 +7,7 @@ export const ScrollArea = forwardRef< React.ComponentPropsWithoutRef & { hideScrollbar?: boolean; orientation?: "vertical" | "horizontal"; + allowOverflow?: boolean; } >( ( @@ -14,6 +15,7 @@ export const ScrollArea = forwardRef< type = "scroll", orientation = "vertical", hideScrollbar = false, + allowOverflow = false, className, children, ...props @@ -26,7 +28,10 @@ export const ScrollArea = forwardRef< className={cn("relative overflow-hidden", className)} {...props} > - + {children}