chore: remove unnecessary map
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2023-04-01 11:15:28 +02:00
parent 01aee0a64b
commit e3a4f87988
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 0 additions and 3 deletions

View File

@ -26,9 +26,6 @@ const projects = computed({
})
const favoriteProjects = computed(() => projectStore.projectsArray
.filter(p => !p.isArchived && p.isFavorite)
.map(p => ({
...p,
}))
.sort((a, b) => a.position - b.position))
</script>