diff --git a/packages/core/src/components/Select/Select.tsx b/packages/core/src/components/Select/Select.tsx index 995e33f489..a2efcc7725 100644 --- a/packages/core/src/components/Select/Select.tsx +++ b/packages/core/src/components/Select/Select.tsx @@ -195,7 +195,9 @@ export const SelectComponent = (props: SelectProps) => { getContentAnchorEl: null, }} > - {placeholder && {placeholder}} + {placeholder && !multiple && ( + {placeholder} + )} {items && items.map(item => (