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

This commit is contained in:
Santiago
2024-03-01 18:04:20 +01:00
committed by GitHub
parent 8ad367e4ad
commit 2964901ea6
2 changed files with 2 additions and 2 deletions
@@ -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>
);
}
@@ -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>
);
}