diff --git a/frontend/src/components/ui/DataTable.vue b/frontend/src/components/ui/DataTable.vue
index cc1b615..85a7172 100644
--- a/frontend/src/components/ui/DataTable.vue
+++ b/frontend/src/components/ui/DataTable.vue
@@ -1,7 +1,7 @@
diff --git a/frontend/src/views/admin/AdminLecturesView.vue b/frontend/src/views/admin/AdminLecturesView.vue
index f8503e6..888a5c0 100644
--- a/frontend/src/views/admin/AdminLecturesView.vue
+++ b/frontend/src/views/admin/AdminLecturesView.vue
@@ -20,7 +20,7 @@ type TabKey = 'lectures' | 'courses' | 'rooms' | 'tags'
type TabConfig = {
title: string
columns: Array<{ key: string; label: string; align?: string }>
- rows: Record[]
+ rows: Record[]
}
const activeTab = ref('lectures')
diff --git a/frontend/src/views/teacher/TeacherDashboardView.vue b/frontend/src/views/teacher/TeacherDashboardView.vue
index 9e6ac7d..ad47704 100644
--- a/frontend/src/views/teacher/TeacherDashboardView.vue
+++ b/frontend/src/views/teacher/TeacherDashboardView.vue
@@ -5,7 +5,6 @@ import { useLecturesStore } from '@/stores/lectures'
import { useAuthStore } from '@/stores/auth'
import GlassCard from '@/components/ui/GlassCard.vue'
import StatsWidget from '@/components/ui/StatsWidget.vue'
-import ProgressBar from '@/components/ui/ProgressBar.vue'
import EmptyState from '@/components/ui/EmptyState.vue'
const lecturesStore = useLecturesStore()