Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

merged fix https://github.com/open-source-labs/Recoilize/issues/136 #1

Merged
merged 3 commits into from
Nov 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function RecoilizeDebugger(props) {
const nodeSubscriptions = {};

nodes.forEach(node => {
const getDeps = [...snapshot.getDeps_UNSTABLE(node)];
const getDeps = [...snapshot.getInfo_UNSTABLE(node).deps];
nodeDeps[node.key] = getDeps.map(dep => dep.key);
});

Expand Down
2 changes: 1 addition & 1 deletion src/extension/build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Recoilize",
"version": "1.0.0",
"version": "2.0.0",
"devtools_page": "devtools.html",
"description": "A Chrome extension that helps debug Recoil applications by memorizing the state of components with every render.",
"manifest_version": 2,
Expand Down