X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ae7d952a97542c2cfc12f6f41ab0de93af278919..c90e813adcec89899d9db95843295a84fb058c3e:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 1807bd8d..ba395e8b 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -11,10 +11,10 @@ import { Route } from "react-router"; import createBrowserHistory from "history/createBrowserHistory"; import configureStore from "./store/store"; import { ConnectedRouter } from "react-router-redux"; -import ApiToken from "./components/api-token/api-token"; +import ApiToken from "./views-components/api-token/api-token"; import authActions from "./store/auth/auth-action"; -import { authService, projectService } from "./services/services"; -import { sidePanelData } from './store/side-panel/side-panel-reducer'; +import { authService } from "./services/services"; +import { getProjectList } from "./store/project/project-action"; const history = createBrowserHistory(); @@ -32,7 +32,7 @@ const store = configureStore({ store.dispatch(authActions.INIT()); const rootUuid = authService.getRootUuid(); -store.dispatch(projectService.getProjectList(rootUuid)); +store.dispatch(getProjectList(rootUuid)); const App = () =>