From bf93959350a9a9659727ca43a79c3027bb926e86 Mon Sep 17 00:00:00 2001 From: alipov-dm Date: Mon, 20 Feb 2023 19:09:41 +0200 Subject: [PATCH] fix: link to the password reset page When using two different deployment approaches, with one of them we get an incorrectly working link to the password reset page. --- src/login/LoginFailure.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/login/LoginFailure.jsx b/src/login/LoginFailure.jsx index 9485b328..3cd635c4 100644 --- a/src/login/LoginFailure.jsx +++ b/src/login/LoginFailure.jsx @@ -29,7 +29,7 @@ const LoginFailureMessage = (props) => { const authService = getAuthService(); let errorList; let resetLink = ( - + {intl.formatMessage(messages['login.incorrect.credentials.error.reset.link.text'])} ); @@ -94,7 +94,7 @@ const LoginFailureMessage = (props) => { break; case FAILED_LOGIN_ATTEMPT: { resetLink = ( - + {intl.formatMessage(messages['login.incorrect.credentials.error.before.account.blocked.text'])} );