This commit is contained in:
Amirhossein Mahmoodi
2024-07-14 15:39:49 +03:30
parent 45e712bf5a
commit 41e8d55735

View File

@@ -442,7 +442,7 @@ const CreateOrUpdateForm = ({ handleClose, mutate, defaultValues, url }) => {
value.map((option, index) => {
const { key, ...tagProps } = getTagProps({ index });
return (
<Chip label={option} key={key} size="small" {...tagProps} />
<Chip label={option} key={key} size="small" sx={{ '&.MuiAutocomplete-tag': { my: 0 } }} {...tagProps} />
);
})
}