linter fixes
All checks were successful
Check / Lint and Check (push) Successful in 41s

This commit is contained in:
2025-11-15 18:29:10 +01:00
parent 6f7200344c
commit bd0c7185ab
6 changed files with 18 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ const labelVariants = cva(
);
const Label = React.forwardRef<
React.ElementRef<typeof LabelPrimitive.Root>,
React.ComponentRef<typeof LabelPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & VariantProps<typeof labelVariants>
>(({ className, ...props }, ref) => (
<LabelPrimitive.Root ref={ref} className={cn(labelVariants(), className)} {...props} />