X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/45d9b3d7298daf82bfb93c82e4f2f8c125c45e79..c4489d532c800a91ea66f3aaec98fc4a299e3e1e:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index fcc02f1e..bee08c80 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -27,10 +27,9 @@ import { collectionFilesActionSet } from './views-components/context-menu/action import { collectionFilesItemActionSet } from './views-components/context-menu/action-sets/collection-files-item-action-set'; import { collectionActionSet } from './views-components/context-menu/action-sets/collection-action-set'; import { collectionResourceActionSet } from './views-components/context-menu/action-sets/collection-resource-action-set'; -import { initPickerProjectTree } from './views-components/project-tree-picker/project-tree-picker'; -const getBuildNumber = () => "BN-" + (process.env.BUILD_NUMBER || "dev"); -const getGitCommit = () => "GIT-" + (process.env.GIT_COMMIT || "latest").substr(0, 7); +const getBuildNumber = () => "BN-" + (process.env.REACT_APP_BUILD_NUMBER || "dev"); +const getGitCommit = () => "GIT-" + (process.env.REACT_APP_GIT_COMMIT || "latest").substr(0, 7); const getBuildInfo = () => getBuildNumber() + " / " + getGitCommit(); const buildInfo = getBuildInfo(); @@ -53,8 +52,7 @@ fetchConfig() const store = configureStore(history, services); store.dispatch(initAuth()); - store.dispatch(getProjectList(services.authService.getUuid())); - store.dispatch(initPickerProjectTree()); + store.dispatch(getProjectList(services.authService.getUuid())); const TokenComponent = (props: any) => ; const WorkbenchComponent = (props: any) => ;