We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In createCollapsibleTabs, we should ensure that children exists as this can be undefined:
createCollapsibleTabs
undefined
Line 88:
const scrollY = useSharedValue([...new Array(children.length)].map(() => 0));
Line 106:
const [data] = React.useState( [...new Array(children.length)].map((_, i) => i) )
The text was updated successfully, but these errors were encountered:
Addressed in: #69
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In
createCollapsibleTabs
, we should ensure that children exists as this can beundefined
:Line 88:
Line 106:
The text was updated successfully, but these errors were encountered: