diff --git a/src/Components/Input/TextAreaInput.tsx b/src/Components/Input/TextAreaInput.tsx index 91642f0e..3369e792 100644 --- a/src/Components/Input/TextAreaInput.tsx +++ b/src/Components/Input/TextAreaInput.tsx @@ -15,6 +15,7 @@ type TextAreaProps = { inputStyle?: string defaultValue: string placeholder?: string + required?: boolean updateFormValue?: (value: string) => void } @@ -30,6 +31,7 @@ export function TextAreaInput({ inputStyle, defaultValue, placeholder, + required = true, updateFormValue, }: TextAreaProps) { const ref = useRef(null) @@ -90,7 +92,7 @@ export function TextAreaInput({ ) : null}