diff --git a/app/soapbox/components/ui/form-group/form-group.tsx b/app/soapbox/components/ui/form-group/form-group.tsx index e3c897a6f..7efb60ade 100644 --- a/app/soapbox/components/ui/form-group/form-group.tsx +++ b/app/soapbox/components/ui/form-group/form-group.tsx @@ -86,6 +86,12 @@ const FormGroup: React.FC = (props) => { )}
+ {hintText && ( +

+ {hintText} +

+ )} + {firstChild} {inputChildren.filter((_, i) => i !== 0)} @@ -97,12 +103,6 @@ const FormGroup: React.FC = (props) => { {errors.join(', ')}

)} - - {hintText && ( -

- {hintText} -

- )}
);