fix: removed ratings from dto

This commit is contained in:
DomWane 2024-09-30 14:31:17 +02:00
parent bd9bad35d1
commit 45b00432e9

View file

@ -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() {