From eddf1b247e5580db6172a13de88dbcf59294e147 Mon Sep 17 00:00:00 2001 From: machacekj0 <285655302+machacekj0@users.noreply.github.com> Date: Mon, 18 May 2026 11:57:13 +0100 Subject: [PATCH] Change default incorrect feedback for inline regions --- src/app/components/content/IsaacInlineRegion.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/content/IsaacInlineRegion.tsx b/src/app/components/content/IsaacInlineRegion.tsx index 342da676a1..17663f0f09 100644 --- a/src/app/components/content/IsaacInlineRegion.tsx +++ b/src/app/components/content/IsaacInlineRegion.tsx @@ -30,7 +30,7 @@ export const useInlineRegionPart = (pageQuestions: AppQuestionDTO[] | undefined) const defaultFeedback = (correctness: QuestionCorrectness) : ContentDTO => { const feedbackMap : {[key in QuestionCorrectness]: string} = { "CORRECT" : "Correct!", - "INCORRECT" : "Check your working.", + "INCORRECT" : "Check your answer.", "NOT_ANSWERED" : "You did not provide an answer.", "NOT_SUBMITTED" : "This answer is missing a unit.", // this is a special case for numeric questions, may need to be updated if we add more inline q types };