SelectMany: Remove legacy styles prop-type

This commit is contained in:
Gustav Hansen 2022-05-23 13:56:54 +02:00
parent 076ff3f2df
commit efe9ed7a07

View File

@ -25,7 +25,6 @@ function SelectMany({
options,
placeholder,
searchToPersist,
styles,
targetModel,
value,
description,
@ -73,7 +72,6 @@ function SelectMany({
placeholder={formatMessage(
placeholder || { id: 'global.select', defaultMessage: 'Select...' }
)}
styles={styles}
value={[]}
/>
<Box paddingTop={3} style={{ overflow: 'auto' }}>
@ -139,7 +137,6 @@ SelectMany.propTypes = {
defaultMessage: PropTypes.string.isRequired,
}),
searchToPersist: PropTypes.string,
styles: PropTypes.object.isRequired,
targetModel: PropTypes.string.isRequired,
value: PropTypes.array,
description: PropTypes.string,