Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c651185 commit 63d07c5Copy full SHA for 63d07c5
.changeset/fix-tags-input-overflow.md
@@ -5,3 +5,6 @@
5
6
- **TagsInput**: Fix overflow issue where very long tags would overflow the
7
container instead of truncating with ellipsis.
8
+
9
+- **CheckboxGroup**: Fix type issue where `CheckboxGroupProps` could not be
10
+ passed to the `CheckboxGroup` component.
packages/react/src/components/checkbox/checkbox.tsx
@@ -158,7 +158,7 @@ export const CheckboxGroup = chakra(
158
},
159
160
{ forwardAsChild: true },
161
-)
+) as React.FC<CheckboxGroupProps>
162
163
////////////////////////////////////////////////////////////////////////////////////
164
0 commit comments