diff --git a/packages/web-react/src/components/FileUploader/README.md b/packages/web-react/src/components/FileUploader/README.md index 3995d71d71..627b3f4027 100644 --- a/packages/web-react/src/components/FileUploader/README.md +++ b/packages/web-react/src/components/FileUploader/README.md @@ -397,7 +397,7 @@ and [escape hatches][readme-escape-hatches]. > ⚠️ We don't use the `required` attribute on the input element. This is because it triggers the browser's default validation, which can block form submission. > Instead, the `FileUploaderInput` component is used to open the system file dialog, and the component itself manages the file(s). -> Please note, the validation for required files is not automatically handled. Developers need to implement this validation independently, using our JS plugin. This approach provides more flexibility and customization to meet specific validation requirements. +> Please note, the validation for required files is not automatically handled. Developers need to implement this validation independently. This approach provides more flexibility and customization to meet specific validation requirements. ## FileUploaderList Props diff --git a/packages/web/src/scss/components/FileUploader/README.md b/packages/web/src/scss/components/FileUploader/README.md index 714a8b42de..4c15c0002a 100644 --- a/packages/web/src/scss/components/FileUploader/README.md +++ b/packages/web/src/scss/components/FileUploader/README.md @@ -160,26 +160,22 @@ Microsoft Word documents: ### Required Input -To mark the input as required, simply add the `required` attribute to the native -`input` element and the `FileUploaderInput__label--required` to the label: +To mark the input as required, simply add the `FileUploaderInput__label--required` to the label: ```html