make it so the message at the top of form is never strictly wrong

This commit is contained in:
burnettk 2023-02-21 22:30:17 -05:00
parent 7ae03bec27
commit 4a28c85e92
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -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>
);
}