Skip to content

Commit

Permalink
HAI-1599 Remove redundant state parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
pitkni committed Sep 26, 2023
1 parent 5805563 commit fa59fc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/hanke/hooks/useNavigateToApplicationList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function useNavigateToHankeList() {
const navigate = useNavigate();
const { HANKEPORTFOLIO } = useLocalizedRoutes();
function navigateToHankeList() {
navigate(HANKEPORTFOLIO.path, { state: { initiallyActiveTab: 4 } });
navigate(HANKEPORTFOLIO.path);
}

return navigateToHankeList;
Expand Down

0 comments on commit fa59fc2

Please sign in to comment.