Skip to content

Commit

Permalink
Console log statements removed
Browse files Browse the repository at this point in the history
  • Loading branch information
fincamd committed May 6, 2020
1 parent 2dc5cba commit e267fa9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/pages/Groups.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class Groups extends React.Component {
toast.error(i18n.t('alertAccessPOD'));
} else {
if (groupJson.length !== 0) {
try{
try {
let tempGroup = new MyGroup("", []);
tempGroup.modifyFromJsonLd(JSON.parse(groupJson));
this.groupManager.addGroup(tempGroup);
Expand All @@ -58,7 +58,7 @@ class Groups extends React.Component {
$("#messageArea").empty();
}
} catch (error) {
console.log(error);
// Ignored
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ShareView.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ class ShareView extends React.Component {
$("#messageArea").empty();
}
} catch (error) {
console.log(error);
// Ignored
}
}
}
Expand Down

0 comments on commit e267fa9

Please sign in to comment.