Remove debug statements

This commit is contained in:
Jackson Harper 2022-04-06 12:12:55 -07:00
parent a68a5fb066
commit 8670bbb2f3

View file

@ -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
}
}