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
Here is a video showing how to reproduce: https://youtu.be/WbOxTZhbiRU
The expected behavior is that the empty state view should not be shown (the node list should still be shown instead).
I believe the issue is here: https://github.com/destefanis/design-lint/blob/7c4290d8ab7d22d57a1a758a17974c97a2c54e80/src/app/components/App.tsx
This code needs to someething like this:
setActiveNodeIds(activeNodeIds => { return activeNodeIds.includes(nodes[0].id) ? activeNodeIds : [...activeNodeIds, nodes[0].id]; });
Because otherwise the list of active node IDs will contain duplicate IDs (which is what ends up triggering the bug).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is a video showing how to reproduce: https://youtu.be/WbOxTZhbiRU
The expected behavior is that the empty state view should not be shown (the node list should still be shown instead).
I believe the issue is here: https://github.com/destefanis/design-lint/blob/7c4290d8ab7d22d57a1a758a17974c97a2c54e80/src/app/components/App.tsx
This code needs to someething like this:
Because otherwise the list of active node IDs will contain duplicate IDs (which is what ends up triggering the bug).
The text was updated successfully, but these errors were encountered: