refs #13989 Merge branch 'origin/13989-webdav-service'
[arvados-workbench2.git] / src / index.tsx
index dd2722335d091f032bcd116979df33df61a37953..cfdbb46cf55882743fd714e7520a9c64884a8d22 100644 (file)
@@ -40,12 +40,12 @@ addMenuActionSet(ContextMenuKind.COLLECTION_RESOURCE, collectionResourceActionSe
 fetchConfig()
     .then(config => {
         const history = createBrowserHistory();
-        const services = createServices(config.API_HOST);
+        const services = createServices(config);
         const store = configureStore(history, services);
 
         store.dispatch(initAuth());
         store.dispatch(getProjectList(services.authService.getUuid()));
-
+        
         const TokenComponent = (props: any) => <ApiToken authService={services.authService} {...props}/>;
         const WorkbenchComponent = (props: any) => <Workbench authService={services.authService} {...props}/>;