chore: remove unused stats

This commit is contained in:
Reto Aebersold 2023-10-30 11:52:38 +01:00
parent e2a346caed
commit 37b2042e7f
1 changed files with 0 additions and 8 deletions

View File

@ -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,
};
};
</script>
<template>