fix: listbox-section props (#4369)

This commit is contained in:
EReguero 2024-12-22 15:06:13 +01:00 committed by GitHub
parent 93c9df15d9
commit b5943db1fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
"@nextui-org/listbox": patch
---
fix listbox section items prop in html element (#4277)

View File

@ -51,6 +51,9 @@ const ListboxSection = forwardRef<"li", ListboxSectionProps>(
// the title props is already inside the rendered prop
// eslint-disable-next-line @typescript-eslint/no-unused-vars
title,
// removed items from props to avoid show in html element
// eslint-disable-next-line @typescript-eslint/no-unused-vars
items,
...otherProps
},
_,