From c0783f0648ebd3d1f0ba937530bab1fa19e7f64f Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Mon, 24 Mar 2025 21:25:31 +0800 Subject: [PATCH] chore(ui): add eslint-disable for empty object type in ChatInputProps --- src/components/ui/chat/chat-input.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) => (