diff --git a/apps/desktop/src/components/ui/input.tsx b/apps/desktop/src/components/ui/input.tsx index cef9ebe7..b29f11ae 100644 --- a/apps/desktop/src/components/ui/input.tsx +++ b/apps/desktop/src/components/ui/input.tsx @@ -4,10 +4,11 @@ import { Input as InputPrimitive } from "@base-ui/react/input" import { cn } from "@/lib/utils" /** Render a styled text input that keeps native input semantics. */ -function Input({ className, type, ...props }: React.ComponentProps<"input">) { +function Input({ className, type, maxLength = 2048, ...props }: React.ComponentProps<"input">) { return (