fix: add await
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2023-03-28 17:25:34 +02:00
parent 0405b97040
commit 4d73a8abfc
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -753,7 +753,7 @@ async function changeProject(project: IProject) {
}
async function toggleFavorite() {
const newTask = taskStore.toggleFavorite(task.value)
const newTask = await taskStore.toggleFavorite(task.value)
Object.assign(task, newTask)
}