From 7ddde18d6c2b3cd8f84c7f43029b8d5dd76b64e6 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Sun, 6 Apr 2025 21:41:37 +0000 Subject: [PATCH] style: fix linting issues met ESLint --- backend/src/services/questions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/services/questions.ts b/backend/src/services/questions.ts index 2e26c960..21794ff5 100644 --- a/backend/src/services/questions.ts +++ b/backend/src/services/questions.ts @@ -52,7 +52,7 @@ export async function createQuestion(loId: LearningObjectIdentifier, questionDat export async function deleteQuestion(questionId: QuestionId): Promise { const questionRepository = getQuestionRepository(); - const question = await fetchQuestion(questionId); // throws error if not found + const question = await fetchQuestion(questionId); // Throws error if not found const loId: LearningObjectIdentifier = { ...questionId.learningObjectIdentifier,