diff --git a/src/components/ui/chat/chat-input.tsx b/src/components/ui/chat/chat-input.tsx index fd7ea16..b742a0e 100644 --- a/src/components/ui/chat/chat-input.tsx +++ b/src/components/ui/chat/chat-input.tsx @@ -2,7 +2,8 @@ import * as React from "react"; import { Textarea } from "@/components/ui/textarea"; import { cn } from "@/lib/utils"; -interface ChatInputProps extends React.TextareaHTMLAttributes{} +// eslint-disable-next-line @typescript-eslint/no-empty-object-type +interface ChatInputProps extends React.TextareaHTMLAttributes { } const ChatInput = React.forwardRef( ({ className, ...props }, ref) => (