diff --git a/src/components/Questionnaire/QuestionTypes/ChoiceQuestion.tsx b/src/components/Questionnaire/QuestionTypes/ChoiceQuestion.tsx
index cb14f07ad59..39f3b66697e 100644
--- a/src/components/Questionnaire/QuestionTypes/ChoiceQuestion.tsx
+++ b/src/components/Questionnaire/QuestionTypes/ChoiceQuestion.tsx
@@ -20,6 +20,7 @@ interface ChoiceQuestionProps {
questionnaireResponse: QuestionnaireResponse,
) => void;
disabled?: boolean;
+ withLabel?: boolean;
clearError: () => void;
index?: number;
}
@@ -29,6 +30,7 @@ export const ChoiceQuestion = memo(function ChoiceQuestion({
questionnaireResponse,
updateQuestionnaireResponseCB,
disabled = false,
+ withLabel = true,
clearError,
index = 0,
}: ChoiceQuestionProps) {
@@ -51,10 +53,12 @@ export const ChoiceQuestion = memo(function ChoiceQuestion({
return (
-
+ {withLabel && (
+
+ )}