From 2964901ea62de904bbd48122d5b6e364dad26401 Mon Sep 17 00:00:00 2001 From: Santiago Date: Fri, 1 Mar 2024 14:04:20 -0300 Subject: [PATCH] Chore: Fix typo in template not found error message (#83778) --- .../unified/components/receivers/DuplicateTemplateView.tsx | 2 +- .../alerting/unified/components/receivers/EditTemplateView.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/app/features/alerting/unified/components/receivers/DuplicateTemplateView.tsx b/public/app/features/alerting/unified/components/receivers/DuplicateTemplateView.tsx index 96489e6c2eb..91f28e94c79 100644 --- a/public/app/features/alerting/unified/components/receivers/DuplicateTemplateView.tsx +++ b/public/app/features/alerting/unified/components/receivers/DuplicateTemplateView.tsx @@ -20,7 +20,7 @@ export const DuplicateTemplateView = ({ config, templateName, alertManagerSource if (!template) { return ( - Sorry, this template does not seem to exists. + Sorry, this template does not seem to exist. ); } diff --git a/public/app/features/alerting/unified/components/receivers/EditTemplateView.tsx b/public/app/features/alerting/unified/components/receivers/EditTemplateView.tsx index b8271e2d98e..062d2f58bec 100644 --- a/public/app/features/alerting/unified/components/receivers/EditTemplateView.tsx +++ b/public/app/features/alerting/unified/components/receivers/EditTemplateView.tsx @@ -18,7 +18,7 @@ export const EditTemplateView = ({ config, templateName, alertManagerSourceName if (!template) { return ( - Sorry, this template does not seem to exists. + Sorry, this template does not seem to exist. ); }