diff --git a/src/app/addCourse/AddCourseToGlobalSettingsForm.tsx b/src/app/addCourse/AddCourseToGlobalSettingsForm.tsx index c39037b..509f4e6 100644 --- a/src/app/addCourse/AddCourseToGlobalSettingsForm.tsx +++ b/src/app/addCourse/AddCourseToGlobalSettingsForm.tsx @@ -24,6 +24,7 @@ import { useCourseListInTermQuery } from "@/features/canvas/hooks/canvasCourseHo import { useCanvasTermsQuery } from "@/features/canvas/hooks/canvasHooks"; import { useDirectoryExistsQuery } from "@/features/local/utils/storageDirectoryHooks"; +// eslint-disable-next-line @typescript-eslint/no-unused-vars const sampleCompose = `services: canvas_manager: image: alexmickelson/canvas_management:2 # pull this image regularly diff --git a/src/app/course/[courseName]/hooks/navigationLogic.test.ts b/src/app/course/[courseName]/hooks/navigationLogic.test.ts index 8a5ebf3..8e33a78 100644 --- a/src/app/course/[courseName]/hooks/navigationLogic.test.ts +++ b/src/app/course/[courseName]/hooks/navigationLogic.test.ts @@ -62,7 +62,7 @@ describe("navigationLogic", () => { { lectures: [{ date: "01/01/2023" }] }, { lectures: [{ date: "01/02/2023" }, { date: "01/03/2023" }] }, ]; - const lectures = getOrderedLectures(weeks as any, courseName); + const lectures = getOrderedLectures(weeks, courseName); expect(lectures).toHaveLength(3); expect(lectures[0].url).toContain(encodeURIComponent("01/01/2023")); expect(lectures[0].type).toBe("lecture");