chore: remove console.log
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
kolaente 2024-09-11 18:14:10 +02:00
parent 55dd7d2981
commit 76f7797e56
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

@ -51,7 +51,7 @@
import {computed, ref} from 'vue'
import {useI18n} from 'vue-i18n'
import {useElementHover} from '@vueuse/core'
import { useRouter } from 'vue-router'
import {useRouter} from 'vue-router'
import {RELATION_KIND} from '@/types/IRelationKind'
import type {ITask} from '@/modelTypes/ITask'
@ -177,7 +177,6 @@ async function addTask() {
taskIndex = lastIndex + index + 1
}
console.log('many tasks to create', taskIndex)
const task = await taskStore.createNewTask({
title,
projectId: projectId || authStore.settings.defaultProjectId,