diff --git a/src/components/form/super_select/super_select_control.tsx b/src/components/form/super_select/super_select_control.tsx index 89e05c5751ce..d001edec9530 100644 --- a/src/components/form/super_select/super_select_control.tsx +++ b/src/components/form/super_select/super_select_control.tsx @@ -80,7 +80,7 @@ export const EuiSuperSelectControl: ( const { defaultFullWidth } = useFormContext(); const { className, - options = [], + options, id, name, fullWidth = defaultFullWidth, @@ -119,7 +119,7 @@ export const EuiSuperSelectControl: ( const selectedValue = useMemo(() => { if (inputValue != null) { - const selectedOption = options.find( + const selectedOption = options?.find( (option) => option.value === inputValue ); return selectedOption ? selectedOption.inputDisplay : undefined;