chore: cleanup leftover console.log
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2024-03-12 21:33:24 +01:00
parent eb4f880c64
commit cf6b476b7d
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 0 additions and 2 deletions

View File

@ -392,7 +392,6 @@ export default abstract class AbstractService<Model extends IAbstract = IAbstrac
const cancel = this.setLoading()
try {
console.log('post', model.reactions)
const response = await this.http.post(url, model)
const result = this.modelUpdateFactory(response.data)
if (typeof model.maxRight !== 'undefined') {

View File

@ -152,7 +152,6 @@ export const useTaskStore = defineStore('task', () => {
const taskService = new TaskService()
try {
const updatedTask = await taskService.update(task)
console.log({updated: updatedTask.reactions, old: task.reactions})
kanbanStore.setTaskInBucket(updatedTask)
return updatedTask
} finally {