From 223cb8e4ae45e59ff4c77930df87b197b690a367 Mon Sep 17 00:00:00 2001 From: Kshitij Verma Date: Thu, 18 Jan 2024 00:08:18 +0530 Subject: [PATCH] removed id prop --- .../Form/FormFields/AutoExpandingTextInputFormField.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Components/Form/FormFields/AutoExpandingTextInputFormField.tsx b/src/Components/Form/FormFields/AutoExpandingTextInputFormField.tsx index b288c04e33a..4d8c6aa4f21 100644 --- a/src/Components/Form/FormFields/AutoExpandingTextInputFormField.tsx +++ b/src/Components/Form/FormFields/AutoExpandingTextInputFormField.tsx @@ -2,7 +2,6 @@ import React, { useEffect, useRef } from "react"; import TextAreaFormField, { TextAreaFormFieldProps } from "./TextAreaFormField"; type AutoExpandingTextInputFormFieldProps = TextAreaFormFieldProps & { - id: string; maxHeight?: number; };