Clean up route-change-handlers imports
authorMichal Klobukowski <michal.klobukowski@contractors.roche.com>
Mon, 31 Dec 2018 08:14:16 +0000 (09:14 +0100)
committerMichal Klobukowski <michal.klobukowski@contractors.roche.com>
Mon, 31 Dec 2018 08:14:16 +0000 (09:14 +0100)
Feature #14653

Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski <michal.klobukowski@contractors.roche.com>

src/routes/route-change-handlers.ts

index 4118415acbb7295bd6e29f3e5e9516835ca15d78..ee48e6da6ab255503ec91bcf4cc0259fc17099d9 100644 (file)
@@ -3,6 +3,9 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import { History, Location } from 'history';
 // SPDX-License-Identifier: AGPL-3.0
 
 import { History, Location } from 'history';
+import { match } from 'react-router-dom';
+import { Dispatch } from 'redux';
+import { ThunkAction } from 'redux-thunk';
 import { RootStore } from '~/store/store';
 import * as R from '~/routes/routes';
 import * as WA from '~/store/workbench/workbench-actions';
 import { RootStore } from '~/store/store';
 import * as R from '~/routes/routes';
 import * as WA from '~/store/workbench/workbench-actions';
@@ -10,8 +13,6 @@ import { navigateToRootProject } from '~/store/navigation/navigation-action';
 import { dialogActions } from '~/store/dialog/dialog-actions';
 import { contextMenuActions } from '~/store/context-menu/context-menu-actions';
 import { searchBarActions } from '~/store/search-bar/search-bar-actions';
 import { dialogActions } from '~/store/dialog/dialog-actions';
 import { contextMenuActions } from '~/store/context-menu/context-menu-actions';
 import { searchBarActions } from '~/store/search-bar/search-bar-actions';
-import { match } from 'react-router-dom';
-import { Dispatch } from 'redux';
 
 export const addRouteChangeHandlers = (history: History, store: RootStore) => {
     const handler = handleLocationChange(store);
 
 export const addRouteChangeHandlers = (history: History, store: RootStore) => {
     const handler = handleLocationChange(store);