Remove typos
authorMichal Klobukowski <michal.klobukowski@contractors.roche.com>
Mon, 13 Aug 2018 07:06:08 +0000 (09:06 +0200)
committerMichal Klobukowski <michal.klobukowski@contractors.roche.com>
Mon, 13 Aug 2018 07:06:08 +0000 (09:06 +0200)
Feature #13989

Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski <michal.klobukowski@contractors.roche.com>

src/common/webdav.ts
src/index.tsx

index 671c0e36f319fcb1554058f231184c17f4550fb1..57caebc839e433f29ee26e13c5163e71270241dc 100644 (file)
@@ -48,7 +48,6 @@ export class WebDAV {
             method: 'DELETE'
         })
 
-
     private request = (config: RequestConfig) => {
         return new Promise<XMLHttpRequest>((resolve, reject) => {
             const r = this.createRequest();
@@ -68,7 +67,6 @@ export class WebDAV {
 
             r.send(config.data);
         });
-
     }
 }
 export interface WebDAVRequestConfig {
index 49cb06460de0bde23f25a3d02dbae745c7eedf7c..14a52e8e1eca4ea3d63491fcbadb61138ee3dbf2 100644 (file)
@@ -43,7 +43,7 @@ fetchConfig()
 
         store.dispatch(initAuth());
         store.dispatch(getProjectList(services.authService.getUuid()));
-        console.log(services.webdavClient);
+        
         const TokenComponent = (props: any) => <ApiToken authService={services.authService} {...props}/>;
         const WorkbenchComponent = (props: any) => <Workbench authService={services.authService} {...props}/>;