From 79c04eb15fcca57dcc5cbb6cc0df2f5e5d2d9f0f Mon Sep 17 00:00:00 2001 From: DomWane Date: Wed, 23 Oct 2024 14:51:36 +0200 Subject: [PATCH] refactor: remove percentage from project data --- composables/useProject.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/composables/useProject.ts b/composables/useProject.ts index 655c7e3..358866a 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 + delete project.value.percentage } function clearProject() {