Skip to content

Commit

Permalink
Fix error message title
Browse files Browse the repository at this point in the history
Closes #7647
  • Loading branch information
jwendell committed Dec 23, 2020
1 parent 9fdc049 commit 19b41a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export const ErrorTemplate: React.FC<{ errors: string[] }> = ({ errors }) => {
variant="danger"
title={t('console-shared~Error')}
>
{t('console-shared~Fix the above errors:')}
{t('console-shared~Fix the following errors:')}
<ul>
{_.map(errors, (error) => (
<li key={error}>{error}</li>
Expand Down

0 comments on commit 19b41a6

Please sign in to comment.