Skip to content

Commit

Permalink
Merge branch 'develop' into hotfix/anchor-icon-path
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalesi authored Jul 17, 2023
2 parents 574199d + 7ccdb27 commit 9805f93
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useDispatch, useSelector } from 'react-redux';
import { useHistory } from 'react-router';
import { useHistory, useLocation } from 'react-router';
import { RootState } from '../../store/reducers';
import {
DATA_EXPLORER_GRAPH_FLOW_DIGEST,
Expand All @@ -13,6 +13,7 @@ import {
const useNavigationStackManager = () => {
const dispatch = useDispatch();
const history = useHistory();
const location = useLocation();
const { rightNodes, leftNodes, referer } = useSelector(
(state: RootState) => state.dataExplorer
);
Expand Down

0 comments on commit 9805f93

Please sign in to comment.