diff --git a/src/pages/content-management/AddNewLessonPage.tsx b/src/pages/content-management/AddNewLessonPage.tsx index 8f5a759..8aca90b 100644 --- a/src/pages/content-management/AddNewLessonPage.tsx +++ b/src/pages/content-management/AddNewLessonPage.tsx @@ -99,12 +99,6 @@ function isDirectVideoFile(url: string): boolean { return /\.(mp4|webm|ogg|mov|m4v)$/.test(clean) } -function stepNodeClass(active: boolean, completed: boolean): string { - if (active) return "bg-grayScale-900 text-white ring-4 ring-grayScale-200" - if (completed) return "bg-grayScale-700 text-white" - return "border-2 border-grayScale-300 bg-white text-grayScale-400" -} - export function AddNewLessonPage() { const { categoryId, courseId, subModuleId } = useParams() const navigate = useNavigate() @@ -283,17 +277,20 @@ export function AddNewLessonPage() {