From 63111dc2f3345a0236a5304899c6ce4c0c67da3a Mon Sep 17 00:00:00 2001 From: Andrew Holloway Date: Wed, 28 Feb 2024 18:20:24 -0600 Subject: [PATCH] feat(InputField)!: remove unused prop requiredLabel - This property is unconnected from the input field, and not used. --- src/components/InputField/InputField.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/components/InputField/InputField.tsx b/src/components/InputField/InputField.tsx index 6c86c1c98..f44b76cba 100644 --- a/src/components/InputField/InputField.tsx +++ b/src/components/InputField/InputField.tsx @@ -77,13 +77,6 @@ export type InputFieldProps = React.InputHTMLAttributes & { * Indicates that field is required for form to be successfully submitted */ required?: boolean; - /** - * String for the required label to add additional information if needed. Currently not being used. - * - * **Deprecated**. This will be removed in the next major version. - * @deprecated - */ - requiredLabel?: string; /** * Title attribute on input */