diff --git a/src/components/ui/form-group/form-group.tsx b/src/components/ui/form-group/form-group.tsx index 430851371..c566bd3d7 100644 --- a/src/components/ui/form-group/form-group.tsx +++ b/src/components/ui/form-group/form-group.tsx @@ -54,13 +54,17 @@ const FormGroup: React.FC = (props) => { )} {hasError && ( -
+
+
+

{errors.join(', ')}

+ +
)} @@ -98,12 +102,18 @@ const FormGroup: React.FC = (props) => { {inputChildren.filter((_, i) => i !== 0)} {hasError && ( -

- {errors.join(', ')} -

+
+
+ +

+ {errors.join(', ')} +

+ +
+
)}