From 6d817e6d275a8ab3ac577a8d4dc6921fc5b4e010 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Sun, 24 Mar 2024 23:32:14 +0000 Subject: [PATCH] Added Match Sentences as a possible exercise type for Reading --- src/pages/(generation)/ReadingGeneration.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/(generation)/ReadingGeneration.tsx b/src/pages/(generation)/ReadingGeneration.tsx index a8e2ce20..24a76381 100644 --- a/src/pages/(generation)/ReadingGeneration.tsx +++ b/src/pages/(generation)/ReadingGeneration.tsx @@ -127,6 +127,7 @@ const ReadingGeneration = () => { {type: "multipleChoice", label: "Multiple Choice"}, {type: "trueFalse", label: "True or False"}, {type: "writeBlanks", label: "Write the Blanks"}, + {type: "paragraphMatch", label: "Match Sentences"}, ]; const toggleType = (type: string) => setTypes((prev) => (prev.includes(type) ? [...prev.filter((x) => x !== type)] : [...prev, type]));