diff --git a/src/components/forms/writing-evaluation-form.jsx b/src/components/forms/writing-evaluation-form.jsx index f3b40c3..3650ada 100644 --- a/src/components/forms/writing-evaluation-form.jsx +++ b/src/components/forms/writing-evaluation-form.jsx @@ -13,6 +13,7 @@ const WritingEvaluationForm = () => { setLoading(true); + const demo = false; const response = await fetch('https://TSTPrep-tstprep-writing.hf.space/get_passage_html', { method: 'POST', @@ -23,7 +24,7 @@ const WritingEvaluationForm = () => { body: JSON.stringify({ essay, task, - // demo: true + demo }) }); if (!response.ok) throw new Error(response.statusText);