diff --git a/client/src/pages/dashboard/statistic/FeedbackList.vue b/client/src/pages/dashboard/statistic/FeedbackList.vue index 1af1e2bd..3978eeee 100644 --- a/client/src/pages/dashboard/statistic/FeedbackList.vue +++ b/client/src/pages/dashboard/statistic/FeedbackList.vue @@ -17,14 +17,6 @@ const statistics = computed(() => { }); const { courseSessionName, circleMeta } = useCourseStatistics(); - -const attendanceStats = (present: number, total: number) => { - return { - SUCCESS: present, - FAIL: total - present, - UNKNOWN: 0, - }; -};