diff --git a/src/pages/(generation)/ReadingGeneration.tsx b/src/pages/(generation)/ReadingGeneration.tsx index 24a76381..84196f6f 100644 --- a/src/pages/(generation)/ReadingGeneration.tsx +++ b/src/pages/(generation)/ReadingGeneration.tsx @@ -127,7 +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"}, + {type: "matchSentences", label: "Match Sentences"}, ]; const toggleType = (type: string) => setTypes((prev) => (prev.includes(type) ? [...prev.filter((x) => x !== type)] : [...prev, type]));