From 7e31618f7fdc51d797a3bf22524731168de68553 Mon Sep 17 00:00:00 2001 From: Michal Klobukowski Date: Mon, 31 Dec 2018 09:14:16 +0100 Subject: [PATCH] Clean up route-change-handlers imports Feature #14653 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- src/routes/route-change-handlers.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); -- 2.30.2