Skip to content

Commit 10ecdd3

Browse files
fix: filterItems prop should be optional in FilterableMultiSelectProps (#18581)
Co-authored-by: Gururaj J <89023023+Gururajj77@users.noreply.github.com>
1 parent 85779ad commit 10ecdd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react/src/components/MultiSelect/FilterableMultiSelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export interface FilterableMultiSelectProps<ItemType>
159159
/**
160160
* Default sorter is assigned if not provided.
161161
*/
162-
filterItems(
162+
filterItems?(
163163
items: readonly ItemType[],
164164
extra: {
165165
inputValue: string | null;

0 commit comments

Comments
 (0)