Fix typo on error message
This commit is contained in:
nixocio
2021-02-15 17:41:32 -05:00
parent 4e48118704
commit 3c8f5f666f

View File

@@ -9,7 +9,7 @@ function LookupErrorMessage({ error, i18n }) {
return (
<div className="pf-c-form__helper-text pf-m-error" aria-live="polite">
{error.message || i18n._(t`An error occured`)}
{error.message || i18n._(t`An error occurred`)}
</div>
);
}