Skip to content

Commit

Permalink
🧹 chore(i18n): compile i18ns
Browse files Browse the repository at this point in the history
  • Loading branch information
thrownullexception committed Jul 3, 2024
1 parent ea864c8 commit e688536
Show file tree
Hide file tree
Showing 14 changed files with 523 additions and 1,668 deletions.
9 changes: 8 additions & 1 deletion src/components/ui/select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,14 @@ export function Select({
)?.label;

return (
<SelectRoot onValueChange={onChange} value={value}>
<SelectRoot
onValueChange={(value$1) => {
if (value$1) {
onChange(value$1);
}
}}
value={value}
>
<SelectTrigger
className={className}
name={name}
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const TableHeader = React.forwardRef<
<thead
ref={ref}
className={cn(
"[&_tr]:border-b bg-hover border-t border-border [&_span]:whitespace-nowrap",
"[&_tr]:border-b bg-hover [&_span]:whitespace-nowrap",
className
)}
{...props}
Expand Down
Loading

0 comments on commit e688536

Please sign in to comment.