From 8670bbb2f39572ed12b0f62523b442047a2c7f7d Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Wed, 6 Apr 2022 12:12:55 -0700 Subject: [PATCH] Remove debug statements --- packages/web/lib/networking/mutations/updateLabelMutation.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/web/lib/networking/mutations/updateLabelMutation.ts b/packages/web/lib/networking/mutations/updateLabelMutation.ts index 8a2603838..d05f11b35 100644 --- a/packages/web/lib/networking/mutations/updateLabelMutation.ts +++ b/packages/web/lib/networking/mutations/updateLabelMutation.ts @@ -38,15 +38,12 @@ export async function updateLabelMutation( ` try { - console.log('here', input) const data = await gqlFetcher(mutation) - console.log('here 3') console.log(input, data); const output = data as any console.log(output) return output?.updatedLabel } catch (err) { - console.log('here 3', err) return undefined } }