diff --git a/src/components/Achievement.js b/src/components/Achievement.js index 12098a3..e045b6e 100644 --- a/src/components/Achievement.js +++ b/src/components/Achievement.js @@ -19,7 +19,6 @@ export default({ uncompleteAchievement }) => { if(completed) { - console.log("Completed: ", completed); const variables = { id: completed.id }; diff --git a/src/containers/GetAchievementsForAdventure.js b/src/containers/GetAchievementsForAdventure.js index 40423ce..bc1a300 100644 --- a/src/containers/GetAchievementsForAdventure.js +++ b/src/containers/GetAchievementsForAdventure.js @@ -70,7 +70,6 @@ export default graphql(gql` }, updateQuery: (prev, response) => { const subscriptionData = response.subscriptionData.data.CompletedAchievement; - console.log("UPDATE! :", response); let updatedAchievements; const oldAchievements = prev.completed diff --git a/src/containers/GetAllAdventures.js b/src/containers/GetAllAdventures.js index 2d0e6bf..64ba662 100644 --- a/src/containers/GetAllAdventures.js +++ b/src/containers/GetAllAdventures.js @@ -49,7 +49,6 @@ export default graphql(gql` scoutID: params.scoutID }, updateQuery: (prev, {subscriptionData}) => { - console.log("SubscriptionData: ", subscriptionData); if(!subscriptionData.data) { return prev; } diff --git a/src/containers/GetScoutData.js b/src/containers/GetScoutData.js index 575a189..61faad9 100644 --- a/src/containers/GetScoutData.js +++ b/src/containers/GetScoutData.js @@ -35,7 +35,6 @@ export default graphql(gql` }, updateQuery: (prev, {subscriptionData}) => { if(!subscriptionData.data) { - console.log('no data!'); return prev; } console.log('data! : ', prev, ':', subscriptionData);