From 08e71c4dd8bd0e2b1e919f9f2ecf6cf1d053fc60 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Mon, 25 Mar 2024 00:47:03 +0000 Subject: [PATCH] Updated the ID of the matchSentences when generating --- src/pages/(generation)/ReadingGeneration.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]));