File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import { Button } from "@/components/ui/button";
11
11
import { Checkbox } from "@/components/ui/checkbox" ;
12
12
import {
13
13
Command ,
14
- CommandEmpty ,
15
14
CommandGroup ,
16
15
CommandItem ,
17
16
CommandList ,
@@ -33,7 +32,7 @@ interface MultiSelectProps
33
32
} [ ] ;
34
33
onValueChange : ( value : string [ ] ) => void ;
35
34
value : string [ ] ;
36
- placeholder ? : string ;
35
+ placeholder : string ;
37
36
modalPopover ?: boolean ;
38
37
asChild ?: boolean ;
39
38
className ?: string ;
@@ -48,7 +47,7 @@ export const MultiSelect = React.forwardRef<
48
47
options,
49
48
onValueChange,
50
49
value = [ ] ,
51
- placeholder = "Select options" ,
50
+ placeholder,
52
51
modalPopover = false ,
53
52
className,
54
53
...props
@@ -168,7 +167,6 @@ export const MultiSelect = React.forwardRef<
168
167
>
169
168
< Command >
170
169
< CommandList >
171
- < CommandEmpty > No results found.</ CommandEmpty >
172
170
< CommandGroup >
173
171
< CommandItem
174
172
key = "all"
You can’t perform that action at this time.
0 commit comments