Remove console log statements.

This commit is contained in:
ogerly 2021-12-03 17:03:09 +01:00 committed by elweyn
parent 688ae36d8f
commit 39a85d96d8

View File

@ -229,9 +229,6 @@ export default {
}
},
bookmarkConfirm(item) {
console.log('die schöpfung bestätigen und abschließen')
console.log(JSON.stringify(item))
console.log(typeof item.id)
this.$apollo
.mutate({
mutation: confirmPendingCreation,
@ -239,8 +236,7 @@ export default {
id: item.id,
},
})
.then((result) => {
console.log('result', result)
.then(() => {
this.$emit('remove-confirm-result', item, 'remove')
})
.catch((error) => {