Chore: Fix typo in template not found error message (#83778)

This commit is contained in:
Santiago 2024-03-01 14:04:20 -03:00 committed by GitHub
parent 8ad367e4ad
commit 2964901ea6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ export const DuplicateTemplateView = ({ config, templateName, alertManagerSource
if (!template) {
return (
<Alert severity="error" title="Template not found">
Sorry, this template does not seem to exists.
Sorry, this template does not seem to exist.
</Alert>
);
}

View File

@ -18,7 +18,7 @@ export const EditTemplateView = ({ config, templateName, alertManagerSourceName
if (!template) {
return (
<Alert severity="error" title="Template not found">
Sorry, this template does not seem to exists.
Sorry, this template does not seem to exist.
</Alert>
);
}