Skip to content

Commit

Permalink
Make combobox items optional since it is now deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
calebjacob committed Feb 3, 2025
1 parent 4a9c464 commit 22f97cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@near-pagoda/ui",
"version": "3.1.7",
"version": "3.1.8",
"description": "A React component library that implements the official NEAR design system.",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type Props = {
/**
* @deprecated please use "options" prop instead
*/
items: ComboboxOption[];
items?: ComboboxOption[];
label: string;
maxDropdownHeight?: string;
name: string;
Expand Down

0 comments on commit 22f97cc

Please sign in to comment.