Skip to content

Commit

Permalink
Merge 1332
Browse files Browse the repository at this point in the history
Hotfix: Fix back arrow location
  • Loading branch information
bilalesi authored Jul 17, 2023
2 parents 729578d + 669935c commit 7ccdb27
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 7ccdb27

Please sign in to comment.