🐛 fix(table.tsx): remove unnecessary "overflow-auto" class from table container div to fix styling issue

This commit is contained in:
Cristhian Zanforlin Lousa 2023-07-07 18:23:04 -03:00
commit c9b5a09c46

View file

@ -5,7 +5,7 @@ const Table = React.forwardRef<
HTMLTableElement,
React.HTMLAttributes<HTMLTableElement>
>(({ className, ...props }, ref) => (
<div className="w-full overflow-auto">
<div className="">
<table
ref={ref}
className={cn("w-full caption-bottom text-sm", className)}