diff --git a/src/components/form/fields.jsx b/src/components/form/fields.jsx index cbfb101..741db52 100644 --- a/src/components/form/fields.jsx +++ b/src/components/form/fields.jsx @@ -27,10 +27,8 @@ function Field({ id, label, hint, children, error }) {
{children} - {hint && !error && ( -
{hint}
- )} {error &&
{error}
} + {hint &&
{hint}
}
);