From 45b00432e9593ac8d186ce3e56637b5debd81165 Mon Sep 17 00:00:00 2001 From: DomWane Date: Mon, 30 Sep 2024 14:31:17 +0200 Subject: [PATCH] fix: removed ratings from dto --- composables/useProject.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/composables/useProject.ts b/composables/useProject.ts index 7086760..c03c5bd 100644 --- a/composables/useProject.ts +++ b/composables/useProject.ts @@ -10,6 +10,7 @@ export const useProject = defineStore('project', () => { function setProject(id: string) { project.value = getProjectById(id, { shallow: false }) as Project + delete project.value.ratings } function clearProject() {