X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/9e4b7889a99ff2f76d8029aef3a85c4620178ba3..1a9eb2261e6030ba78078e2a206bad27653f2475:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 9e1f103c..cf1610f8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -6,7 +6,6 @@ import * as React from 'react'; import * as ReactDOM from 'react-dom'; import { Provider } from "react-redux"; import Workbench from './views/workbench/workbench'; -import ProjectList from './views-components/project-list/project-list'; import './index.css'; import { Route } from "react-router"; import createBrowserHistory from "history/createBrowserHistory"; @@ -14,7 +13,8 @@ import configureStore from "./store/store"; import { ConnectedRouter } from "react-router-redux"; import ApiToken from "./views-components/api-token/api-token"; import authActions from "./store/auth/auth-action"; -import { authService, projectService } from "./services/services"; +import { authService } from "./services/services"; +import { getProjectList } from "./store/project/project-action"; const history = createBrowserHistory(); @@ -31,7 +31,7 @@ const store = configureStore({ store.dispatch(authActions.INIT()); const rootUuid = authService.getRootUuid(); -store.dispatch(projectService.getProjectList(rootUuid)); +store.dispatch(getProjectList(rootUuid)); const App = () =>