chore: remove unnecessary map

This commit is contained in:
kolaente 2023-04-01 11:15:28 +02:00
parent b5d9afd0f7
commit 336db56316
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>