X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ea54fb82c3a59ca8a959643f8bec4776635433e0..0d45466589474731ae6e0bce82000225b44573ac:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 0d026f2389..f456c995d1 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -5,7 +5,7 @@ import * as React from 'react'; import * as ReactDOM from 'react-dom'; import { Provider } from "react-redux"; -import { Workbench } from './views/workbench/workbench'; +import { MainPanel } from './views/main-panel/main-panel'; import './index.css'; import { Route } from 'react-router'; import createBrowserHistory from "history/createBrowserHistory"; @@ -38,7 +38,6 @@ import { addRouteChangeHandlers } from './routes/route-change-handlers'; import { setCurrentTokenDialogApiHost } from '~/store/current-token-dialog/current-token-dialog-actions'; import { processResourceActionSet } from './views-components/context-menu/action-sets/process-resource-action-set'; import { progressIndicatorActions } from '~/store/progress-indicator/progress-indicator-actions'; -import { snackbarActions, SnackbarKind } from "~/store/snackbar/snackbar-actions"; const getBuildNumber = () => "BN-" + (process.env.REACT_APP_BUILD_NUMBER || "dev"); const getGitCommit = () => "GIT-" + (process.env.REACT_APP_GIT_COMMIT || "latest").substr(0, 7); @@ -68,8 +67,8 @@ fetchConfig() store.dispatch(progressIndicatorActions.TOGGLE_WORKING({ id, working })); }, errorFn: (id, error) => { - console.error("Backend error:", error); - store.dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Backend error", kind: SnackbarKind.ERROR })); + // console.error("Backend error:", error); + // store.dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Backend error", kind: SnackbarKind.ERROR })); } }); const store = configureStore(history, services); @@ -79,7 +78,7 @@ fetchConfig() store.dispatch(setCurrentTokenDialogApiHost(apiHost)); const TokenComponent = (props: any) => ; - const WorkbenchComponent = (props: any) => ; + const MainPanelComponent = (props: any) => ; const App = () => @@ -87,7 +86,7 @@ fetchConfig()
- +