diff --git a/ui/litellm-dashboard/src/components/ui/input.tsx b/ui/litellm-dashboard/src/components/ui/input.tsx index 71764ec27b2..e0effafef6e 100644 --- a/ui/litellm-dashboard/src/components/ui/input.tsx +++ b/ui/litellm-dashboard/src/components/ui/input.tsx @@ -2,20 +2,24 @@ import * as React from "react"; import { cn } from "@/lib/cva.config"; -function Input({ className, type, ...props }: React.ComponentProps<"input">) { - return ( - - ); -} +const Input = React.forwardRef>( + ({ className, type, ...props }, ref) => { + return ( + + ); + }, +); +Input.displayName = "Input"; export { Input };