feat(simulations): afficher la consigne du sujet au-dessus de la textarea

This commit is contained in:
Hermann_Kitio 2026-04-20 23:15:13 +03:00
parent b356bc7109
commit e449661ee0
2 changed files with 8 additions and 2 deletions

View file

@ -49,6 +49,7 @@ export function SimulationPage() {
const {
step,
production,
sujet,
isCreating,
isCorrecting,
correctError,
@ -90,6 +91,7 @@ export function SimulationPage() {
{planData && (step === 'task-selected' || step === 'correcting') && production && (
<SimulationForm
tache={production.tache}
sujet={sujet}
isSubmitting={isCorrecting}
error={correctError}
onSubmit={submitText}