diff --git a/packages/react/src/components/Forms/Select/multi-common.tsx b/packages/react/src/components/Forms/Select/multi-common.tsx index 3cbb0fb..fadcd74 100644 --- a/packages/react/src/components/Forms/Select/multi-common.tsx +++ b/packages/react/src/components/Forms/Select/multi-common.tsx @@ -37,14 +37,11 @@ export function getMultiOptionsFilter( }; } -export type SelectMultiProps = Omit & { +export type SubProps = Omit & { onChange?: (event: { target: { value: string[] } }) => void; -}; - -export interface SubProps extends SelectMultiProps { - selectedItems: Option[]; onSelectedItemsChange: (selectedItems: Option[]) => void; -} + selectedItems: Option[]; +}; export const SelectMultiAux = ({ options,