From 2a659e596ce47a435a89d9de35503f70061648df Mon Sep 17 00:00:00 2001
From: Glenn Fischer <gfischer@ub.uni-leipzig.de>
Date: Thu, 28 Mar 2019 15:18:52 +0100
Subject: [PATCH] #1874: remove console.logs

---
 src/components/WorkspaceImport.js | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/components/WorkspaceImport.js b/src/components/WorkspaceImport.js
index 5004373f5..3f6d6dd8f 100644
--- a/src/components/WorkspaceImport.js
+++ b/src/components/WorkspaceImport.js
@@ -42,11 +42,9 @@ export class WorkspaceImport extends Component {
     const { configImportValue } = this.state;
     event.preventDefault();
     try {
-      console.log(configImportValue);
       const configJSON = JSON.parse(configImportValue);
       importConfig(configJSON);
     } catch (ex) {
-      console.log(ex);
       const { addError } = this.props;
       addError(ex.toString());
     }
-- 
GitLab