From d2ec6864fbdd7cf5b9f62cdd60d60c471c9abe90 Mon Sep 17 00:00:00 2001 From: Andrew Nicolaou Date: Mon, 16 Sep 2019 21:57:32 +0200 Subject: [PATCH] Remove logging --- .../modules/IDE/components/CollectionList/CollectionListRow.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/client/modules/IDE/components/CollectionList/CollectionListRow.jsx b/client/modules/IDE/components/CollectionList/CollectionListRow.jsx index edcf321e..05ef9dce 100644 --- a/client/modules/IDE/components/CollectionList/CollectionListRow.jsx +++ b/client/modules/IDE/components/CollectionList/CollectionListRow.jsx @@ -32,7 +32,6 @@ AddRemoveButton.propTypes = { class CollectionListRowBase extends React.Component { static projectInCollection(project, collection) { - console.log('project in collection', project, collection); return collection.items.find(item => item.project.id === project.id) != null; }