diff --git a/frontend/src/components/project/RadiobuttonList.vue b/frontend/src/components/project/RadiobuttonList.vue index 71e2707f..6df6cf28 100644 --- a/frontend/src/components/project/RadiobuttonList.vue +++ b/frontend/src/components/project/RadiobuttonList.vue @@ -59,10 +59,6 @@ watch(isToggled, (newVal) => { } }); -watch(selectedOption, (newVal) => { - emit("update:selectedOption", newVal); -}); - function handleDateChange(value: Date) { emit("update:date", value); } diff --git a/frontend/src/views/CreateProjectView.vue b/frontend/src/views/CreateProjectView.vue index 4d86708c..5ed5f619 100644 --- a/frontend/src/views/CreateProjectView.vue +++ b/frontend/src/views/CreateProjectView.vue @@ -380,7 +380,6 @@ function generateEmptyGroups(projectId: number) { emptyGroups.push({ project_id: projectId, score: 0, - num: i, }); } return emptyGroups;