diff --git a/frontend/src/lang/fr.json b/frontend/src/lang/fr.json
index 331a6e4a8c466a18790bc85c0111d8f0f23c61b0..99d7955418199adc45d16d1d9f9e831c4ae8d623 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 (plusieurs lignes si besoin)",
-		"learnerInstructions": "Instructions pour l'apprenant (plusieurs lignes si besoin)",
-		"examples": "Exemples (plusieurs lignes si besoin)",
+		"instructions": "Instructions pour le tuteur",
+		"learnerInstructions": "Instructions pour l'apprenant",
+		"examples": "Exemples",
 		"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 42c0fb295579e0109f86340d197ef76d8da4ad39..a70a40f16895d974d9b97dcb7529096e98109fb4 100644
--- a/frontend/src/routes/admin/tasks/TaskForm.svelte
+++ b/frontend/src/routes/admin/tasks/TaskForm.svelte
@@ -54,6 +54,7 @@
 		<label class="label" for="instructions">{$t('tasks.instructions')}</label>
 		<textarea
 			use:autosize
+			rows=2
 			class="input w-full"
 			id="instructions"
 			name="instructions"
@@ -63,6 +64,7 @@
 		<label class="label" for="learnerInstructions">{$t('tasks.learnerInstructions')}</label>
 		<textarea
 			use:autosize
+			rows=2
 			class="input w-full"
 			id="learnerInstructions"
 			name="learnerInstructions"
@@ -72,6 +74,7 @@
 		<label class="label" for="examples">{$t('tasks.examples')} *</label>
 		<textarea
 			use:autosize
+			rows=2
 			class="input w-full"
 			id="examples"
 			name="examples"