Skip to content
Snippets Groups Projects
Commit 2a659e59 authored by Glenn Fischer's avatar Glenn Fischer
Browse files

#1874: remove console.logs

parent a781d72c
No related branches found
No related tags found
No related merge requests found
......@@ -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());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment