Skip to content

Commit f9d498d

Browse files
authored
fix: Fix chip list empty state prop type (#578)
1 parent d3b43ea commit f9d498d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ChipList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export type ChipListProps<TValue> = {
1414
values: TValue[]
1515
transformValue?: TransformFn<TValue>
1616
limit: number
17-
emptyState?: JSX.Element
17+
emptyState?: JSX.Element | null
1818
} & ChipProps
1919

2020
function ChipList<TValue = string>({

0 commit comments

Comments
 (0)