Skip to content

Commit

Permalink
Eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
avoinea committed Feb 28, 2021
1 parent fbfbfee commit 5af673c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ProgressWorkflow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const ProgressWorkflow = (props) => {
setCurrentState(null); // reset current state only if a path without workflow is
// chosen to avoid flicker for those that have workflow
}
}, [currentStateKey, workflowProgress]);
}, [currentStateKey, workflowProgress]); // eslint-disable-line

useEffect(() => {
dispatch(getWorkflowProgress(pathname)); // the are paths that don't have workflow (home, login etc)
Expand Down

0 comments on commit 5af673c

Please sign in to comment.