We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db77c3e commit baeb9d0Copy full SHA for baeb9d0
1 file changed
packages/ra-ui-materialui/src/input/AutocompleteInput.tsx
@@ -635,6 +635,7 @@ If you provided a React element for the optionText prop, you must also provide t
635
636
const renderChips = (value, getProps: (args: { index: number }) => any) =>
637
value.map((option, index) => {
638
+ // We have to extract the key because react 19 does not allow to spread the key prop
639
const { key, ...chipProps } = getProps({ index });
640
// @ts-expect-error slotProps do not yet exist in MUI v5
641
const mergedSlotProps = props.slotProps?.chip
0 commit comments