From 4244e00552ab8d8e7a43d3048a9ac837a8483389 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maren=20S=C3=BCwer?= Date: Wed, 2 Jan 2019 11:32:43 +0100 Subject: [PATCH] use correct translation --- scm-ui/src/containers/Login.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/src/containers/Login.js b/scm-ui/src/containers/Login.js index 60a7579072..142b623229 100644 --- a/scm-ui/src/containers/Login.js +++ b/scm-ui/src/containers/Login.js @@ -96,7 +96,7 @@ class Login extends React.Component { areCredentialsInvalid() { const { t, error } = this.props; if (error === UNAUTHORIZED_ERROR) { - return new Error(t("login.wrong-login-credentials")); + return new Error(t("error-notification.wrong-login-credentials")); } else { return error; }