l-min-components 1.7.1415 → 1.7.1417
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -95,7 +95,7 @@ const Grammar = ({ Aidata }) => {
|
|
|
95
95
|
</ul>
|
|
96
96
|
</GrammarHeader>
|
|
97
97
|
<GrammarContent>
|
|
98
|
-
{selectedSection === 1 && selectedWord && (
|
|
98
|
+
{selectedSection === 1 && selectedWord && selectedWord?.position && (
|
|
99
99
|
<div className="feedback_section">
|
|
100
100
|
<div className="failed">
|
|
101
101
|
<RedX />
|
|
@@ -193,7 +193,13 @@ const ReportQuestions = ({
|
|
|
193
193
|
)}
|
|
194
194
|
{data && (
|
|
195
195
|
<>
|
|
196
|
-
{questionType === "essay-written" &&
|
|
196
|
+
{questionType === "essay-written" && (
|
|
197
|
+
<EssayWritten
|
|
198
|
+
data={data}
|
|
199
|
+
aiData={AiData}
|
|
200
|
+
setToggle={setToggle}
|
|
201
|
+
/>
|
|
202
|
+
)}
|
|
197
203
|
{questionType === "essay-scripted" && (
|
|
198
204
|
<EssayScripted
|
|
199
205
|
data={data}
|