diff --git a/frontend/src/lang/fr.json b/frontend/src/lang/fr.json
index 99d7955418199adc45d16d1d9f9e831c4ae8d623..331a6e4a8c466a18790bc85c0111d8f0f23c61b0 100644
--- a/frontend/src/lang/fr.json
+++ b/frontend/src/lang/fr.json
@@ -408,9 +408,9 @@
 		"editTitle": "Modifier la tâche",
 		"level": "Niveau CEFR",
 		"shortTitle": "Nom de la tâche (max 5 mots)",
-		"instructions": "Instructions pour le tuteur",
-		"learnerInstructions": "Instructions pour l'apprenant",
-		"examples": "Exemples",
+		"instructions": "Instructions pour le tuteur (plusieurs lignes si besoin)",
+		"learnerInstructions": "Instructions pour l'apprenant (plusieurs lignes si besoin)",
+		"examples": "Exemples (plusieurs lignes si besoin)",
 		"create": "Créer une nouvelle tâche",
 		"taskInProgress": "Tâche en cours",
 		"taskFinished": "Tâche terminée avec succès",
diff --git a/frontend/src/routes/admin/tasks/TaskForm.svelte b/frontend/src/routes/admin/tasks/TaskForm.svelte
index 33169e2ff4df2e5e506bc700db827d30bba77cc2..42c0fb295579e0109f86340d197ef76d8da4ad39 100644
--- a/frontend/src/routes/admin/tasks/TaskForm.svelte
+++ b/frontend/src/routes/admin/tasks/TaskForm.svelte
@@ -54,7 +54,6 @@
 		<label class="label" for="instructions">{$t('tasks.instructions')}</label>
 		<textarea
 			use:autosize
-			rows="2"
 			class="input w-full"
 			id="instructions"
 			name="instructions"
@@ -64,7 +63,6 @@
 		<label class="label" for="learnerInstructions">{$t('tasks.learnerInstructions')}</label>
 		<textarea
 			use:autosize
-			rows="2"
 			class="input w-full"
 			id="learnerInstructions"
 			name="learnerInstructions"
@@ -74,7 +72,6 @@
 		<label class="label" for="examples">{$t('tasks.examples')} *</label>
 		<textarea
 			use:autosize
-			rows="2"
 			class="input w-full"
 			id="examples"
 			name="examples"