Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
karanpargal committed Jun 6, 2024
1 parent 3d87742 commit 81f7ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Table = forwardRef<
HTMLTableElement,
React.HTMLAttributes<HTMLTableElement>
>(({ className, ...props }, ref) => (
<div className="relative w-full overflow-auto rounded border border-secondary-light dark:border-secondary-dark whitespace-nowrap">
<div className="relative w-full overflow-auto whitespace-nowrap rounded border border-secondary-light dark:border-secondary-dark">
<table
ref={ref}
className={cn("w-full caption-bottom text-sm", className)}
Expand Down

0 comments on commit 81f7ecd

Please sign in to comment.