From 37b2042e7f6718c618fcabd88f69ccc8ba119ca5 Mon Sep 17 00:00:00 2001 From: Reto Aebersold Date: Mon, 30 Oct 2023 11:52:38 +0100 Subject: [PATCH] chore: remove unused stats --- client/src/pages/dashboard/statistic/FeedbackList.vue | 8 -------- 1 file changed, 8 deletions(-) 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, - }; -};