Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
prevwong committed Feb 28, 2020
1 parent 7cc37ae commit 189e83a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
url: {
url: {
production: {
LANDING: "https://craft.js.org/",
DOCUMENTATION: "https://craft.js.org/r/docs/overview/",
Expand All @@ -15,5 +15,5 @@ module.exports = {
DOCUMENTATION: "http://localhost:3000/r/docs/overview/",
BASIC_EXAMPLE: "http://localhost:3002/"
}
}[process.env.ENV || 'development']
}
}[process.env.ENV || "development"]
};
2 changes: 1 addition & 1 deletion packages/core/src/hooks/useEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function useEditor<S>(collect?: any): useEditor<S> {
setNodeEvent("hovered", null);
}
};
}, [EditorActions]);
}, [EditorActions, setNodeEvent]);

return {
connectors: handlers,
Expand Down

0 comments on commit 189e83a

Please sign in to comment.