Skip to content

Commit f554a04

Browse files
committed
terminology changed
1 parent 736b673 commit f554a04

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/components/ui/multi-select.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { Button } from "@/components/ui/button";
1111
import { Checkbox } from "@/components/ui/checkbox";
1212
import {
1313
Command,
14-
CommandEmpty,
1514
CommandGroup,
1615
CommandItem,
1716
CommandList,
@@ -33,7 +32,7 @@ interface MultiSelectProps
3332
}[];
3433
onValueChange: (value: string[]) => void;
3534
value: string[];
36-
placeholder?: string;
35+
placeholder: string;
3736
modalPopover?: boolean;
3837
asChild?: boolean;
3938
className?: string;
@@ -48,7 +47,7 @@ export const MultiSelect = React.forwardRef<
4847
options,
4948
onValueChange,
5049
value = [],
51-
placeholder = "Select options",
50+
placeholder,
5251
modalPopover = false,
5352
className,
5453
...props
@@ -168,7 +167,6 @@ export const MultiSelect = React.forwardRef<
168167
>
169168
<Command>
170169
<CommandList>
171-
<CommandEmpty>No results found.</CommandEmpty>
172170
<CommandGroup>
173171
<CommandItem
174172
key="all"

0 commit comments

Comments
 (0)