diff --git a/packages/mui-joy/src/Autocomplete/Autocomplete.tsx b/packages/mui-joy/src/Autocomplete/Autocomplete.tsx index dbbb1631332c72..b28696c7f720d6 100644 --- a/packages/mui-joy/src/Autocomplete/Autocomplete.tsx +++ b/packages/mui-joy/src/Autocomplete/Autocomplete.tsx @@ -409,13 +409,14 @@ const Autocomplete = React.forwardRef(function Autocomplete( selectedOptions = renderTags(value as Array, getCustomizedTagProps, ownerState); } else { selectedOptions = (value as Array).map((option, index) => { + const { key: endDecoratorKey, ...endDecoratorProps } = getCustomizedTagProps({ index }); return ( } + endDecorator={} sx={{ minWidth: 0 }} > {getOptionLabel(option)}