From c40bd1a2e6e386dd85d030d9c9e9b1bbee01b143 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Fri, 18 Oct 2019 14:07:17 +0200 Subject: [PATCH] Fix error message --- src/webhooks/components/WebhookInfo/WebhookInfo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webhooks/components/WebhookInfo/WebhookInfo.tsx b/src/webhooks/components/WebhookInfo/WebhookInfo.tsx index e1687dbe9..11da21fc8 100644 --- a/src/webhooks/components/WebhookInfo/WebhookInfo.tsx +++ b/src/webhooks/components/WebhookInfo/WebhookInfo.tsx @@ -62,7 +62,7 @@ const WebhookInfo: React.StatelessComponent = ({ function translateErrors(intl: IntlShape) { return { [WebhookErrorCode.INVALID]: intl.formatMessage({ - defaultMessage: "Missing token or serviceAccount", + defaultMessage: "Missing service account", description: "webhook service account error" }) }; @@ -112,7 +112,7 @@ const WebhookInfo: React.StatelessComponent = ({ helperText={ serviceAccountsError && intl.formatMessage({ - defaultMessage: "Missing token or serviceAccount", + defaultMessage: "Missing service account", description: "webhook service account error" }) }