chore: remove debug console.log statements

This commit is contained in:
Jordan Knott
2020-08-12 14:44:28 -05:00
parent 6761d4571e
commit 2e9767f1a0
20 changed files with 14 additions and 100 deletions

View File

@@ -127,7 +127,6 @@ const Project = () => {
const [toggleTaskLabel] = useToggleTaskLabelMutation({
onCompleted: newTaskLabel => {
taskLabelsRef.current = newTaskLabel.toggleTaskLabel.task.labels;
console.log(taskLabelsRef.current);
},
});
@@ -176,8 +175,6 @@ const Project = () => {
FindProjectDocument,
cache =>
produce(cache, draftCache => {
console.log(cache);
console.log(response);
draftCache.findProject.members = cache.findProject.members.filter(
m => m.id !== response.data.deleteProjectMember.member.id,
);
@@ -208,8 +205,6 @@ const Project = () => {
);
}
if (data) {
console.log(data.findProject);
labelsRef.current = data.findProject.labels;
return (