From e79cd673b1efa5cf0cfaa5ff62351a40e26c9e7a Mon Sep 17 00:00:00 2001 From: Marcin Lewandowski Date: Tue, 31 Oct 2023 22:07:55 +0100 Subject: [PATCH] fix(FileUploaderDropContainer): allow undefined value for labelText (#15069) Co-authored-by: Taylor Jones --- .../src/components/FileUploader/FileUploaderDropContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/src/components/FileUploader/FileUploaderDropContainer.tsx b/packages/react/src/components/FileUploader/FileUploaderDropContainer.tsx index 5191ecadb656..37abb592902b 100644 --- a/packages/react/src/components/FileUploader/FileUploaderDropContainer.tsx +++ b/packages/react/src/components/FileUploader/FileUploaderDropContainer.tsx @@ -42,7 +42,7 @@ export interface FileUploaderDropContainerProps * Provide the label text to be read by screen readers when interacting with * this control */ - labelText: string; + labelText?: string; /** * Specify if the component should accept multiple files to upload