We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca5741f commit 834ce59Copy full SHA for 834ce59
src/util/FormGroup.tsx
@@ -95,7 +95,7 @@ const FormGroup = <T extends BaseFormElementRenderProps>(props: FormGroupProps<T
95
{hint}
96
</Hint>
97
) : null}
98
- {!disableErrorFromComponents && error && typeof error === 'string' ? (
+ {error && typeof error === 'string' ? (
99
<ErrorMessage id={errorID} {...errorProps}>
100
{error}
101
</ErrorMessage>
0 commit comments