From 58e601f8065a03d36be54c1686967aa351426b02 Mon Sep 17 00:00:00 2001 From: luandro Date: Mon, 9 Dec 2024 16:32:21 -0300 Subject: [PATCH] chore: Add working helper text Updated the helper text in QuestionLabel to use the old but working placeholder and added hint style for a more consistent look and feel. --- src/frontend/screens/ObservationFields/QuestionLabel.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/frontend/screens/ObservationFields/QuestionLabel.tsx b/src/frontend/screens/ObservationFields/QuestionLabel.tsx index fc5c7a5dd..1444543dd 100644 --- a/src/frontend/screens/ObservationFields/QuestionLabel.tsx +++ b/src/frontend/screens/ObservationFields/QuestionLabel.tsx @@ -13,7 +13,11 @@ export const QuestionLabel = ({field}: Props) => { - {{field.helperText}} + { + + {field.placeholder} + + } ); };