diff --git a/src/components/Questionnaire/QuestionTypes/MedicationRequestQuestion.tsx b/src/components/Questionnaire/QuestionTypes/MedicationRequestQuestion.tsx
index 89b342d2fb5..3a505569b09 100644
--- a/src/components/Questionnaire/QuestionTypes/MedicationRequestQuestion.tsx
+++ b/src/components/Questionnaire/QuestionTypes/MedicationRequestQuestion.tsx
@@ -100,55 +100,59 @@ export function MedicationRequestQuestion({
return (
-
+
{medications.length > 0 && (
-
- {/* Header */}
-
-
- {t("medicine")}
+
+
+ {/* Header */}
+
+
+ {t("medicine")}
+
+
+ {t("dosage")}
+
+
+ {t("frequency")}
+
+
+ {t("days")}
+
+
+ {t("instructions")}
+
+
+ {t("additional_instructions")}
+
+
+ {t("route")}
+
+
+ {t("site")}
+
+
+ {t("method")}
+
+
+ {t("intent")}
+
+
-
- {t("dosage")}
-
-
- {t("frequency")}
-
-
- {t("days")}
-
-
- {t("instructions")}
-
-
- {t("additional_instructions")}
-
-
- {t("route")}
-
-
- {t("site")}
-
-
- {t("method")}
-
-
- {t("intent")}
-
-
-
- {/* Body */}
-
- {medications.map((medication, index) => (
-
handleUpdateMedication(index, updates)}
- onRemove={() => handleRemoveMedication(index)}
- />
- ))}
+ {/* Body */}
+
+ {medications.map((medication, index) => (
+
+ handleUpdateMedication(index, updates)
+ }
+ onRemove={() => handleRemoveMedication(index)}
+ />
+ ))}
+
)}
@@ -408,7 +412,7 @@ const MedicationRequestGridRow: React.FC<{
{/* Remove Button - Desktop */}
-