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 71ec206 commit 7222123Copy full SHA for 7222123
src/components/AccordionItem.tsx
@@ -23,7 +23,7 @@ const AccordionItem = ({
23
activeClassName,
24
...rest
25
}: Props): JSX.Element => {
26
- const [instanceUuid] = useState(nextUuid());
+ const [instanceUuid] = useState<UUID>(nextUuid());
27
const uuid = customUuid || instanceUuid;
28
29
const renderChildren = (itemContext: ItemContext): JSX.Element => {
0 commit comments