diff --git a/src/@/components/ui/input.tsx b/src/@/components/ui/input.tsx index 677d05f..70d174b 100644 --- a/src/@/components/ui/input.tsx +++ b/src/@/components/ui/input.tsx @@ -3,7 +3,7 @@ import * as React from "react" import { cn } from "@/lib/utils" export interface InputProps - extends React.InputHTMLAttributes {} + extends React.InputHTMLAttributes { } const Input = React.forwardRef( ({ className, type, ...props }, ref) => { @@ -11,7 +11,7 @@ const Input = React.forwardRef(