From e5fbdfb6dee9ef9a6d910a53dcf3d5e86f91229b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dafydd=20Ll=C5=B7r=20Pearson?= Date: Fri, 17 May 2024 16:48:37 +0100 Subject: [PATCH] fix: Remove 'Select all that apply' element from combobox (#3166) --- .../FileUploadAndLabel/SelectMultiple.tsx | 28 ++++++------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/editor.planx.uk/src/@planx/components/FileUploadAndLabel/SelectMultiple.tsx b/editor.planx.uk/src/@planx/components/FileUploadAndLabel/SelectMultiple.tsx index 66cac4e7ba..d05ee67dee 100644 --- a/editor.planx.uk/src/@planx/components/FileUploadAndLabel/SelectMultiple.tsx +++ b/editor.planx.uk/src/@planx/components/FileUploadAndLabel/SelectMultiple.tsx @@ -176,26 +176,14 @@ const PopupIcon = ; */ const ListboxComponent = forwardRef( ({ children, ...props }, ref) => ( - <> - - - - Select all that apply - - - - - - {children} - - + + {children} + ), );