make it so the message at the top of form is never strictly wrong
This commit is contained in:
parent
54248ca568
commit
4e94bca76a
|
@ -5,8 +5,8 @@ import { Tag } from '@carbon/react';
|
|||
function ErrorList({ errors }: ErrorListProps) {
|
||||
if (errors) {
|
||||
return (
|
||||
<Tag type="red" size="md" title="Fill Required Fields">
|
||||
Please fill out required fields
|
||||
<Tag type="red" size="md" title="Fix validation issues">
|
||||
Some fields are invalid. Please correct them before submitting the form.
|
||||
</Tag>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue