From: Michal Klobukowski Date: Mon, 31 Dec 2018 08:14:16 +0000 (+0100) Subject: Clean up route-change-handlers imports X-Git-Tag: 1.4.0~72^2~1 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/7e31618f7fdc51d797a3bf22524731168de68553 Clean up route-change-handlers imports Feature #14653 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- diff --git a/src/routes/route-change-handlers.ts b/src/routes/route-change-handlers.ts index 4118415a..ee48e6da 100644 --- a/src/routes/route-change-handlers.ts +++ b/src/routes/route-change-handlers.ts @@ -3,6 +3,9 @@ // 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'; @@ -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 { match } from 'react-router-dom'; -import { Dispatch } from 'redux'; export const addRouteChangeHandlers = (history: History, store: RootStore) => { const handler = handleLocationChange(store);